淘宝镜像cnpm安装Vue.js

2017-08-24  本文已影响180人  光彩影
  1. Mac,可以使用 Homebrew 进行安装node.js:
 brew install node

安装完成后,可以使用以下命令检测是否安装成功:

$ node -v
v6.3.1
$ npm -v
3.10.3
  1. 安装了node.js,安装包里面集成了npm,然后我们就可以利用npm命令从获取淘宝镜像的cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
  1. 升级 npm
cnpm install npm -g
  1. 在用 Vue.js 构建大型应用时推荐使用 NPM 安装:
cnpm install vue
  1. Vue.js 提供一个官方命令行工具,可用于快速搭建大型单页应用。
# 全局安装 vue-cli
$ cnpm install --global vue-cli
# 创建一个基于 webpack 模板的新项目
$ vue init webpack my-project
# 这里需要进行一些配置,默认回车即可
? Project name my-project
? Project description A Vue.js project
? Author wscqs <935966764@qq.com>
? Vue build standalone
? Install vue-router? Yes
? Use ESLint to lint your code? Yes
? Pick an ESLint preset Standard
? Setup unit tests with Karma + Mocha? Yes
? Setup e2e tests with Nightwatch? Yes

   vue-cli · Generated "my-project".

   To get started:
   
     cd my-project
     npm install
     npm run dev
   
   Documentation can be found at https://vuejs-templates.github.io/webpack
  1. 进入项目,安装并运行:
$ cd my-project
$ cnpm install
$ cnpm run dev
 DONE  Compiled successfully in 4388ms

> Listening at http://localhost:8080

End

上一篇下一篇

猜你喜欢

热点阅读