Helloworld

  1. console.log('hello world')

bash运行

  1. node helloworld/index.js
  2. # 或
  3. node helloworld

Nodemon自动重启

监视代码修改,自动重启

  1. npm i nodemon -g
  2. nodemon helloworld

Vscode调试debug

单元测试 - Jest

安装jest库

  1. npm install jest -g

tests文件夹中创建index.spec.ts

  1. test("Hello world", () => {
  2. require('../index')
  3. });

运行

  1. jest helloworld