Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 274 Bytes

commands.md

File metadata and controls

16 lines (13 loc) · 274 Bytes

Commands

  • The following compiles the TypeScript code into JavaScript code:
tsc main.ts
  • The following command to executes the compiled JavaScript code
node main.js
  • The following runs all tests and shows coverage
npx jest --coverage