test-hello-ts-pkg2
v1.0.5
Published
Simple hello world project for running TypeScript with Node.js
Downloads
63
Readme
Hello TypeScript2
Simple hello world project for running TypeScript with Node.js
Running the Project
- Install Node.js LTS (https://nodejs.org)
- Open a command window at the root of this project
- Run
npm install
Running the Project
- Run
tsc
to build the javascript to theout
folder - Run
node out/helloworld.js
Debugging the Project
- Open the project in VS Code
- Open the
helloworld.ts
file - Set a breakpoint on one of the lines of code
- Press
F5