You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
If you don't have `git`, you can download and unzip the repository contents.
43
+
### Download
44
+
<a href="https://github.com/angular/quickstart/archive/master.zip" title="Download the QuickStart seed repository">Download the QuickStart seed</a>
45
+
and unzip it into your project folder. Then perform the remaining steps with these terminal commands.
35
46
36
-
1. open [`https://github.com/angular/quickstart`](https://github.com/angular/quickstart) in a browser
37
-
1. click the <span style="color: green;">green <b>"Clone or download"</b></span> button,
38
-
then the <span style="color: blue;">blue <b>"Download zip"</b></span> button
39
-
1. move the downloaded zip file to the `my-project` folder and unzip it
40
-
1. [install the `npm` packages](#install-node "What if you don't have node?")
41
-
1. run it
47
+
code-example(language="sh"class="code-shell").
48
+
cd my-project
49
+
npm install
50
+
npm start
42
51
43
-
## What's different about the setup?
52
+
.l-main-section
53
+
:marked
54
+
## What's different about the QuickStart Seed?
44
55
45
-
The setup (zip or clone) delivers the same application as the [QuickStart](../quickstart.html "Angular QuickStart"),
46
-
a fact you can confirm with the <live-example></live-example>.
56
+
The QuickStart seed contains the same application as the <live-example><i>live code</i> QuickStart</live-example>.
57
+
But there are _many more files_ in the project folder on your machine,
58
+
most of which you can [learn about later](setup-systemjs-anatomy.html "Setup Anatomy").
47
59
48
-
But there are _many more files_ in the project folder on your machine.
49
-
Ignore all but three of them for now and
50
-
[learn about the others later](setup-systemjs-anatomy.html "Setup Anatomy").
51
-
52
-
Focus on these three TypeScript (`.ts`) files in the **`/app`** folder.
60
+
Focus on the following three TypeScript (`.ts`) files in the **`/app`** folder.
53
61
54
62
.filetree
55
63
.file app
@@ -99,10 +107,16 @@ table(width="100%")
99
107
That's the only choice when running in the live-coding browser environment.
100
108
You'll learn about other compiling and deployment options later in the documentation.
101
109
102
-
#install-node
103
110
.l-main-section
104
111
:marked
105
-
## Prerequisites: _node_ and _npm_
112
+
## Next Step
113
+
114
+
If you're new to Angular, try the recommended [learning path](learning-path.html).
115
+
116
+
a#install-node
117
+
.l-main-section
118
+
:marked
119
+
## Appendix: _node_ and _npm_
106
120
107
121
Node.js and npm are essential to modern web development with Angular and other platforms.
108
122
Node powers client development and build tools.
@@ -118,3 +132,4 @@ table(width="100%")
118
132
We recommend [nvm](https://github.com/creationix/nvm) for managing multiple versions of node and npm.
119
133
You may need [nvm](https://github.com/creationix/nvm) if you already have projects running on your machine that
0 commit comments