Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 3408b72

Browse files
committed
docs(quickstart): Jesus' and Deb's suggestions.
1 parent ca89d59 commit 3408b72

File tree

2 files changed

+14
-15
lines changed

2 files changed

+14
-15
lines changed

public/docs/ts/latest/guide/setup.jade

+12-13
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ block includes
99
play with the code, share your changes with friends, and download and run the code on your own machine.
1010

1111
As much fun as this is
12-
* you can't ship your app in plunker.
13-
* development in the browser is slow.
12+
* you can't ship your app in plunker
13+
* development in the browser is slow
1414
* you aren't always online
15-
* the type support, refactoring, and code completion only work in your local IDE.
15+
* the type support, refactoring, and code completion only work in your local IDE
1616

17-
# Setup a local develoment environment
17+
# Setup a local development environment
1818

1919
Fortunately, setting up a local development environment is quick and easy:
2020
1. `git clone` the [**QuickStart** repository](https://github.com/angular/quickstart "Clone the github QuickStart repo")
@@ -40,9 +40,9 @@ code-example(language="sh" class="code-shell").
4040
1. [install the `npm` packages](#install-node "What if you don't have node?")
4141
1. run it
4242

43-
## What's different?
43+
## What's different about the setup?
4444

45-
The setup delivers the same application as the [QuickStart](../quickstart.html "Angular QuickStart"),
45+
The setup (zip or clone) delivers the same application as the [QuickStart](../quickstart.html "Angular QuickStart"),
4646
a fact you can confirm with the <live-example></live-example>.
4747

4848
But there are _many more files_ in the project folder on your machine.
@@ -104,7 +104,9 @@ table(width="100%")
104104
:marked
105105
## Prerequisites: _node_ and _npm_
106106

107-
Node.js and npm are essential tools in modern web development. Angular developers need them too.
107+
Node.js and npm are essential to modern web development with Angular and other platforms.
108+
Node powers client development and build tools.
109+
The _npm_ package manager, itself a _node_ application, installs JavaScript libraries.
108110

109111
<a href="https://docs.npmjs.com/getting-started/installing-node" target="_blank" title="Installing Node.js and updating npm">
110112
Get them now</a> if they're not already installed on your machine.
@@ -113,9 +115,6 @@ table(width="100%")
113115
by running the commands `node -v` and `npm -v` in a terminal/console window.
114116
Older versions produce errors.
115117

116-
We recommend [nvm](https://github.com/creationix/nvm) for managing multiple versions of node and npm. You may need [nvm](https://github.com/creationix/nvm) if you already have projects running on your machine that use other versions of node and npm.
117-
118-
.l-sub-section
119-
:marked
120-
### Next step
121-
[The _Tour of Heroes_ tutorial](../tutorial)
118+
We recommend [nvm](https://github.com/creationix/nvm) for managing multiple versions of node and npm.
119+
You may need [nvm](https://github.com/creationix/nvm) if you already have projects running on your machine that
120+
use other versions of node and npm.

public/docs/ts/latest/quickstart.jade

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ nter
1515
The `AppComponent` template renders a "Hello Angular!" header into a custom `<my-app>` element.
1616

1717
The `AppModule` tells Angular<br>
18-
&nbsp;&nbsp;***what you need*** &mdash; _imports_ the `BrowserModule` to display the application in the browser.<br>
18+
&nbsp;&nbsp;***what you need*** &mdash; _imports_ the `BrowserModule` to run the application in the browser.<br>
1919
&nbsp;&nbsp;***what you created*** &mdash; _declares_ the `AppComponent`.<br>
2020
&nbsp;&nbsp;***what to show*** &mdash; _bootstrap_ the `AppComponent` onto the `index.html` web page within the `<my-app>` tag.
2121

2222
+makeExample('index.html','my-app','index.html (body)')(format='.')
2323
:marked
2424
You'll find more _live code examples_ like this one on almost every documentation page.
25-
25+
2626
# TypeScript
2727
This example is written in <a href="http://www.typescriptlang.org/" target="_blank" title="TypeScript">TypeScript</a>,
2828
a strongly-typed, super-set of the latest JavaScript.

0 commit comments

Comments
 (0)