Skip to content

Commit bc3c88c

Browse files
committed
update installation npm section
1 parent f35fa10 commit bc3c88c

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

source/guide/installation.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Installation
33
type: guide
4-
order: 1
4+
order: 0
55
vue_version: 1.0.0-rc.1
66
dev_size: "237.15"
77
min_size: "71.70"
@@ -30,18 +30,21 @@ Some environments, such as Google Chrome Apps, enforces Content Security Policy
3030

3131
## NPM
3232

33+
NPM is the recommended installation method when building large scale apps with Vue.js. It pairs nicely with a CommonJS module bundler such as [Webpack](http://webpack.github.io/) or [Browserify](http://browserify.org/). Vue.js also provides accompanying tools for authoring [Single File Components](http://localhost:4000/guide/application.html#Single_File_Components).
34+
3335
``` bash
36+
# latest stable
3437
$ npm install vue
35-
# for csp-compliant version:
38+
# latest stable + CSP-compliant
3639
$ npm install vue@csp
37-
# for dev build (from GitHub):
40+
# dev build (directly from GitHub):
3841
$ npm install vuejs/vue#dev
3942
```
4043

4144
## Bower
4245

4346
``` bash
44-
# only stable version is available through Bower
47+
# latest stable
4548
$ bower install vue
4649
```
4750

0 commit comments

Comments
 (0)