Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Welcome to Gofore's Angular Training!

Setup

Node.js, npm & git

Links for installers/installation instruction:

Please, make sure that the applications are installed correctly by checking their version numbers (which do not need to exactly match). Example of a valid setup:

> node --version
v10.14.1

> npm --version
6.5.0

> git --version
git version 2.6.4

Editor

You may use any IDE you feel comfortable with but we recommend IntelliJ IDEA Ultimate (or WebStorm Ultimate) or Visual Studio Code to be used since they provide very good support for Angular development.

If you prefer using Atom or Brackets, please, find instructions below.

IntelliJ IDEA Ultimate (or WebStorm)

  • Proprietary (though 30-day trial available)
  • Install recommended plugins through IntelliJ IDEA plugin management:

Visual Studio Code

Google Chrome

Google Chrome browser is needed for running and debugging Karma tests.

Project Skeleton for Exercises

Go to your workspace directory (Documents/GitHub etc.) and run

npm install -g @angular/[email protected]
ng new angular-training
cd angular-training
ng serve

to generate a new project and to start the server. Server is running okay when it says webpack: bundle is now valid on the last line. Then, visit http://localhost:4200/ to check that app works! is printed. Now your environment is ready for training. See you soon!