Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 683 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 683 Bytes

node-ts-cli

Getting started

This is a template repository. You can create your own repository just by clicking in "Use this template" button above.

After creating your repo, you can hack the project in your own way. I recommend starting by changing the package.json file to include your project name and cli name.

Scripts

  • npm run dev: start the project in watch mode for compiling your cli
  • npm build: build the project
  • npm lint: lint all files
  • npm run test: test your files

Note: executing the project from inside VSCode will automatically attach the debugger for node. Thus, you can use the breakpoints to help debugging your code.

Happy hacking =)