Last active
November 26, 2016 12:50
-
-
Save OzieWest/aa054b454c154ac686b126d6020cd272 to your computer and use it in GitHub Desktop.
TypeScript with NodeJS - Quick start
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm init -y && npm install typescript --save-dev && npm install @types/node --save-dev && node ./node_modules/.bin/tsc --init && npm install ts-node --save-dev && npm install nodemon --save-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| ... | |
| "scripts": { | |
| "start": "npm run build:live", | |
| "build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./index.ts" | |
| }, | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment