January 2018
Intermediate to advanced
332 pages
7h 36m
English
Now, let's create the Angular application. We will create a new application for each example for the sake of clarity. You can club them into the same application if you feel comfortable. To create an Angular application using the CLI, run the following command in the Terminal:
ng new <project-name>
Replace project-name with the name of your project; if everything goes well, you should see something similar on your Terminal:
installing ng create .editorconfig create README.md create src/app/app.component.css create src/app/app.component.html create src/app/app.component.spec.ts create src/app/app.component.ts create src/app/app.module.ts create src/assets/.gitkeep create src/environments/environment.prod.ts
Read now
Unlock full access