Skip to content

Instantly share code, notes, and snippets.

@OzieWest
Last active November 26, 2016 12:50
Show Gist options
  • Select an option

  • Save OzieWest/aa054b454c154ac686b126d6020cd272 to your computer and use it in GitHub Desktop.

Select an option

Save OzieWest/aa054b454c154ac686b126d6020cd272 to your computer and use it in GitHub Desktop.
TypeScript with NodeJS - Quick start
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
{
...
"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