Note: The project has dependencies that require Node 4.x.x and NPM 3.x.x
BEFORE YOU INSTALL: please read the prerequisites
# Install Typings CLI utility.
npm install typings --global
# Install Gulp
npm install gulp --global
# Install the project's dependencies
npm install
npm run watch
watches for changes in TypeScript files in./src
directory and automatically compile changes into./dist/
.npm run serve
runs the application usingnodemon dist/main.js
, which restarts the server each time the compiled files change.npm run start
run bothnpm run watch
andnpm run serve
concurrently