- git client
- NodeJS 14.15.1+ & NPM 6.14.8+
- Recommended Visual Studio Code extensions:
git clone https://github.com/8pointers/angular-workshop-exercises.git
cd angular-workshop-exercises
npm install
npm start
Starting development server:
npm start ex01-intro
Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
Creating a new component:
npm run generate component message-of-the-day -- --project=ex02-component
Building a project:
npm run build ex01-intro -- --prod=true
The build artifacts will be stored in the dist/
directory.
Running unit tests via Karma:
npm test ex01-intro
Running end-to-end tests via Protractor.
npm run e2e ex01-intro