Based on Mosh Hamedani - Angular 2 with TypeScript for Beginners: The Pragmatic Guide
- node.js - evented I/O for the backend
- Npm - npm is the package manager for node.js
- Typescript TypeScript is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript.
- typings The manager for TypeScript definitions.
Is recommend to install typescript and typings globally:
$ npm install -g typescript
$ npm install -g typings
First you need to install all required node modules, so execute this
$ npm install
Then, you need to run our app, so with this command you can run a server witch will be open the app automatically:
$ npm start