From 98685e6f85c7f3844ff950afdd5f4ccc5a539e59 Mon Sep 17 00:00:00 2001 From: Schlemmer Date: Tue, 25 Jun 2019 09:11:28 +0200 Subject: [PATCH] docs: change note about cli (#31216) PR Close #31216 --- aio/content/start/index.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/aio/content/start/index.md b/aio/content/start/index.md index 3ce6c2151e..e691acef91 100644 --- a/aio/content/start/index.md +++ b/aio/content/start/index.md @@ -6,6 +6,11 @@ This tutorial introduces you to the essentials of Angular. It leverages what you already know about HTML and JavaScript—plus some useful Angular features—to build a simple online store application, with a catalog, shopping cart, and check-out form. You don't need to install anything: you'll build the app using the [StackBlitz](https://stackblitz.com/ "StackBlitz web site") online development environment. +
+ +We are using the StackBlitz Generator to show you a ready-made, simple application that you can examine and play with interactively. In actual development you will typically use the [Angular CLI](guide/glossary#command-line-interface-cli), a powerful command-line tool that lets you generate and modify applications. For more information, see the [CLI Overview](cli). + +
New to web development?
@@ -204,12 +209,6 @@ You might have noticed that the product list component also defines a `products` We're going to create a new alert feature. The alert feature will take a product as an input. It will then check the product's price, and, if the price is greater than $700, it will display a "Notify Me" button that lets users sign up for notifications when the product goes on sale. -
- -Learn more: This manual uses StackBlitz Generator for simplification. Take a look at [Angular CLI](cli) to get an overview of our CLI commands. - -
- 1. Create a new product alerts component. 1. Right click on the `app` folder and use the `Angular Generator` to generate a new component named `product-alerts`.