http://nodejs.cn/download/
傻瓜式安装后,管理员运行 cmd 通过 node -v 查看版本
由于现在版本的nodejs已经集成npm所以无需安装,可以用npm -v 查看版本
如果你安装的是旧版本的 npm,可以很容易得通过 npm 命令来升级,命令如下:
npm install npm -g
npm install -g cnpm --registry=https://registry.npmmirror.com
之后可以使用 cnpm 进行安装
cnpm install -g vue-cli
安装完整后,通过 vue -V 查看vue版本
vue init webpack myproject
运行 cnpm install 安装依赖项
cnpm run dev
npm run build 或者 cnpm
会编译打包到项目dist文件夹下,然后就可以部署到服务器上