1、安装Nodejs-8.9.3
https://nodejs.org/zh-cn/download/
下载安装https://nodejs.org/download/release/v8.9.3/
安装完成后,命令行升级一下npm
$ sudo npm install npm@latest -g
$ npm -v
6.4.1
权限设置
$ npm config get prefix
/usr/local
$ sudo chown -R $(whoami) $(npm config get prefix)/{lib/node_modules,bin,share}
npm config get prefix是用来找到npm的目录
sudo chown -R (npm config get prefix)/{lib/node_modules,bin,share}给当前用户读写npm相关目录的权限。
2、安装webpack和vue-cli
//在全局安装了webpack sudo npm install webpack -g
$ sudo npm install webpack -g
$ npm install vue-cli -g
$ npm list -g --depth=0
/usr/local/lib
├── create-react-native-app@1.0.0
├── es-checker@1.4.1
├── npm@5.5.1
├── vue-cli@2.9.1
└── webpack@3.8.1
创建工程
$ cd your_workspace_folder
$ vue init webpack projectname
比如我的工程名为vueStart,输入的地方没有什么需求直接回车就行了。
$ vue init webpack-simple vueStart
? Project name vuestart
? Project description A Vue.js project
? Author tomfriwel <xxx@xx.com>
? Use sass? No
vue-cli · Generated "vueStart".
To get started:
cd vueStart
npm install
npm run dev.
这里注意的是,如果用vue init webpack-simple projectname
,之后npm run dev
是运不起来的。所以这里用的webpack
而不是webpack-simple
这里的vue init webpack
和npm install webpack
不一样
vue init webpack
是安装webpack
模板(也可以是以下列出的一些模板webpack-simple/browserify...
)
具体信息可以查看vuejs-templates/webpack
一些可用的模板
* [webpack](https://github.com/vuejs-templates/webpack) - A full-featured Webpack + vue-loader setup with hot reload, linting, testing & css extraction.
* [webpack-simple](https://github.com/vuejs-templates/webpack-simple) - A simple Webpack + vue-loader setup for quick prototyping.
* [browserify](https://github.com/vuejs-templates/browserify) - A full-featured Browserify + vueify setup with hot-reload, linting & unit testing.
* [browserify-simple](https://github.com/vuejs-templates/browserify-simple) - A simple Browserify + vueify setup for quick prototyping.
* [pwa](https://github.com/vuejs-templates/pwa) - PWA template for vue-cli based on the webpack template
* [simple](https://github.com/vuejs-templates/simple) - The simplest possible Vue setup in a single HTML file
配置工程
进入创建的工程目录
$ cd vueStart/
$ npm install
npm install后就会安装一些乱七八糟的东西。
安装 vue 路由模块vue-router和网络请求模块vue-resource,这两个如果用不到也可以不用装。
$ npm install vue-router vue-resource --save
+ vue-resource@1.3.4
+ vue-router@3.0.1
added 17 packages in 6.541s
--save的作用
运行和构建
$ npm run dev
没什么问题的话,打开页面是这样的
image.png
发布
执行
$ npm run build
完成后会生成一个dist文件夹
dist
├── index.html
└── static
├── css
│ └── app.86d25fd679f2d9f5bee9162ae7804b46.css
└── js
├── app.bcbf2665a80fe0bdc316.js
├── app.bcbf2665a80fe0bdc316.js.map
├── manifest.f9cc8df0a9bc12617260.js
├── manifest.f9cc8df0a9bc12617260.js.map
├── vendor.5edf78e409459ac3ccd1.js
└── vendor.5edf78e409459ac3ccd1.js.map
如果是想本地运行而不是放到服务器上,需要对config/index.js进行一个小更改。将build中的assetsPublicPath改为./,不然会找不到资源,最后再次npm run build,就可以直接浏览器打开dist文件夹下的index.html了。
网友评论