test-hello-ts-pkg1
v1.1.4
Published
Simple hello world project for running TypeScript with Node.js
Downloads
62
Readme
Hello TypeScript1
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