Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: replace old quickstart with new getting started and adjust all xrefs #29651

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 0 additions & 11 deletions aio/content/examples/cli-quickstart/bs-config.cli.json

This file was deleted.

14 changes: 0 additions & 14 deletions aio/content/examples/cli-quickstart/e2e/src/app.e2e-spec.ts

This file was deleted.

4 changes: 0 additions & 4 deletions aio/content/examples/cli-quickstart/example-config.json

This file was deleted.

6 changes: 0 additions & 6 deletions aio/content/examples/cli-quickstart/src/app/app.component.css

This file was deleted.

19 changes: 0 additions & 19 deletions aio/content/examples/cli-quickstart/src/app/app.component.html

This file was deleted.

30 changes: 0 additions & 30 deletions aio/content/examples/cli-quickstart/src/app/app.component.spec.ts

This file was deleted.

16 changes: 0 additions & 16 deletions aio/content/examples/cli-quickstart/src/app/app.component.ts

This file was deleted.

16 changes: 0 additions & 16 deletions aio/content/examples/cli-quickstart/src/app/app.module.ts

This file was deleted.

14 changes: 0 additions & 14 deletions aio/content/examples/cli-quickstart/src/index.html

This file was deleted.

11 changes: 0 additions & 11 deletions aio/content/examples/cli-quickstart/src/main.ts

This file was deleted.

9 changes: 0 additions & 9 deletions aio/content/examples/cli-quickstart/zipper.json

This file was deleted.

2 changes: 1 addition & 1 deletion aio/content/guide/attribute-directives.md
Expand Up @@ -15,7 +15,7 @@ There are three kinds of directives in Angular:
1. Attribute directives—change the appearance or behavior of an element, component, or another directive.

*Components* are the most common of the three directives.
You saw a component for the first time in the [Getting Started](guide/quickstart).
You saw a component for the first time in the [Getting Started](start "Getting Started with Angular") tutorial.

*Structural Directives* change the structure of the view.
Two examples are [NgFor](guide/template-syntax#ngFor) and [NgIf](guide/template-syntax#ngIf).
Expand Down
4 changes: 2 additions & 2 deletions aio/content/guide/deployment.md
Expand Up @@ -338,10 +338,10 @@ The following example displays the graph for the _main_ bundle.
The `source-map-explorer` analyzes the source map generated with the bundle and draws a map of all dependencies,
showing exactly which classes are included in the bundle.

Here's the output for the _main_ bundle of the QuickStart.
Here's the output for the _main_ bundle of an example app called `cli-quickstart`.

<figure>
<img src="generated/images/guide/cli-quickstart/quickstart-sourcemap-explorer.png" alt="quickstart sourcemap explorer">
<img src="generated/images/guide/deployment/quickstart-sourcemap-explorer.png" alt="quickstart sourcemap explorer">
</figure>

{@a base-tag}
Expand Down
3 changes: 1 addition & 2 deletions aio/content/guide/displaying-data.md
Expand Up @@ -31,8 +31,7 @@ The easiest way to display a component property
is to bind the property name through interpolation.
With interpolation, you put the property name in the view template, enclosed in double curly braces: `{{myHero}}`.

Follow the [Getting Started](guide/quickstart) instructions for creating a new project
named <code>displaying-data</code>.
Use the CLI command [`ng new displaying-data`](cli/new) to create a workspace and app named `displaying-data`.

Delete the <code>app.component.html</code> file. It is not needed for this example.

Expand Down
2 changes: 1 addition & 1 deletion aio/content/guide/glossary.md
Expand Up @@ -176,7 +176,7 @@ In Angular, a set of related [schematics](#schematic) collected in an [npm packa

The [Angular CLI](cli) is a command-line tool for managing the Angular development cycle. Use it to create the initial filesystem scaffolding for a [workspace](#workspace) or [project](#project), and to run [schematics](#schematic) that add and modify code for initial generic versions of various elements. The CLI supports all stages of the development cycle, including building, testing, bundling, and deployment.

* To begin using the CLI for a new project, see [Getting Started](guide/quickstart).
* To begin using the CLI for a new project, see [Local Environment Setup](guide/setup-local "Setting up for Local Development").
* To learn more about the full capabilities of the CLI, see the [CLI command reference](cli).

See also [Schematics CLI](#schematics-cli).
Expand Down
2 changes: 1 addition & 1 deletion aio/content/guide/npm-packages.md
Expand Up @@ -9,7 +9,7 @@ Alternatively, you can use the [yarn client](https://yarnpkg.com/) for downloadi

<div class="alert is-helpful">

See [Getting Started](guide/quickstart#prerequisites) for information about the required versions and installation of Node.js and npm.
See [Local Environment Setup](guide/setup-local "Setting up for Local Development") for information about the required versions and installation of `Node.js` and `npm`.

If you already have projects running on your machine that use other versions of Node.js and npm, consider using [nvm](https://github.com/creationix/nvm) to manage the multiple versions of Node.js and npm.

Expand Down
148 changes: 0 additions & 148 deletions aio/content/guide/prerequisites-setup.md

This file was deleted.