diff --git a/aio/content/guide/quickstart.md b/aio/content/guide/quickstart.md index a31b419927020..87c6db6fd5cbb 100644 --- a/aio/content/guide/quickstart.md +++ b/aio/content/guide/quickstart.md @@ -40,7 +40,7 @@ Older versions produce errors, but newer versions are fine. -Then **install the [Angular CLI](https://github.com/angular/angular-cli)** globally. +Then install the [Angular CLI](https://github.com/angular/angular-cli) globally. @@ -60,7 +60,7 @@ Then **install the [Angular CLI](https://github.com/angular/angular-cli)** globa Open a terminal window. -Generate a new project and skeleton application by running the following commands: +Generate a new project and default app by running the following command: @@ -69,19 +69,23 @@ Generate a new project and skeleton application by running the following command +The Angular CLI installs the necessary npm packages, creates the project files, and populates the project with a simple default app. This can take some time. -
+
-Patience, please. -It takes time to set up a new project; most of it is spent installing npm packages. -
+You can add pre-packaged functionality to a new project by using the `ng add` command. The `ng add` command transforms a project by applying the schematics in the specified package. +For more information, see the [Angular CLI documentation.](https://github.com/angular/angular-cli/wiki/add "Angular CLI documentation") +Angular Material provides schematics for typical app layouts. +See the [Angular Material documentation](https://material.angular.io/guides "Angular Material documentation") for details. +
+

Step 3: Serve the application diff --git a/aio/content/tutorial/toh-pt0.md b/aio/content/tutorial/toh-pt0.md index 61598a858df5e..ffee67949c67c 100644 --- a/aio/content/tutorial/toh-pt0.md +++ b/aio/content/tutorial/toh-pt0.md @@ -18,6 +18,20 @@ Create a new project named `angular-tour-of-heroes` with this CLI command. The Angular CLI generated a new project with a default application and supporting files. + +
+ + + +You can add pre-packaged functionality to a new project by using the `ng add` command. The `ng add` command transforms a project by applying the schematics in the specified package. +For more information, see the [Angular CLI documentation.](https://github.com/angular/angular-cli/wiki/add "Angular CLI documentation") + +Angular Material provides schematics for typical app layouts. +See the [Angular Material documentation](https://material.angular.io/guides "Angular Material documentation") for details. + +
+ + ## Serve the application Go to the project directory and launch the application.