用Typescript 開發 node.js (方法2)

參考文檔: https://blog.csdn.net/haodawang/article/details/78669768node

1. 首先咱們須要安裝typescript的tsc編譯器    cnpm install --save typescripttypescript

2. 執行命令 npm initnpm

3. 執行命令 tsc --initjson

4. 修改 tsconfig.jsonspa

"outDir": "./dist",                        
"rootDir": "./src",

5. 添加文件  src/main.ts.net

class Person {
    constructor(name: string) {
        console.log(`Hello Person constructor ${name}`);
    }
}
let person = new Person('趙錢')

6. 運行編譯命令   tsc      (或者  tsc -w  帶監視功能)code

7. 運行程序    node dist/main.jsblog

相關文章
相關標籤/搜索