This is the sample project for the Angular 13 Fundamentals Workshop.
This sample project includes an Angular web application generated with Angular CLI version 13.0.3. It also contains a mock RESTful API using json-server
.
- Git
- Node.js and NPM – we recommend using NVM (Linux/Mac) or NVM-Windows (Windows)
- Install Angular CLI via
npm i -g @angular/cli
git clone https://github.com/onehungrymind/angular13-fundamentals-workshop
cd angular13-fundamentals-workshop
npm i
npm start
The npm start
calls the serve:all
command which is a convenience method that runs the serve:api
and serve:web
commands concurrently. You can run each command separately if you need to.
"start": "npm run serve:all",
"serve:web": "ng serve --port 4300 --open",
"serve:api": "json-server server/db.json",
"serve:all": "concurrently \"npm run serve:api\" \"npm run serve:web\"",
The web application will open to http://localhost:4200 in your browser.
You can see the API by navigating to http://localhost:3000/ in your browser.
Note: the above terminal commands are for Mac. Remember to substitute the appropriate commands for your OS.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.