July 2017
Intermediate to advanced
384 pages
8h 23m
English
First of all, you need to install Node.js and npm, which we already mentioned in the TypeScript fundamentals you need to know section. Why do we need npm? In HTML and SystemJS configuration, we could reference all dependencies from https://unpkg.com. But, we prefer to install all dependencies locally so that IDEs are fine with autocompletion. For instance, to install SystemJS, you have to run the following command in a console of your choice:
npm install systemjs --save
For readers, we created a complete demo seed project where all dependencies are listed in the package.json file.
Read now
Unlock full access