最近由於在籌備一個官網的建立,遂前段選擇vue+elemen的方式搭建項目。因此須要搭建vue環境,在搭建的時候遇到不少坑,多是教程老的緣由,總是出錯,遂出此教程。vue
1:安裝node.js(https://nodejs.org/en/)node
地址:https://nodejs.org/en/ 下載安裝webpack
測試是否安裝成功:nodejs裏面會安裝npm指令,顯示版本號安裝成功。web
2:配置nodejs prefix(全局)和cache(緩存)路徑vue-router
先找到nodejs的安裝目錄(默認C:\Program Files\nodejs)vue-cli
在nodejs安裝路徑下,新建node_global和node_cache兩個文件夾npm
命令進行修改設置json
npm config set cache "C:\Program Files\nodejs\node_cache"
npm config set prefix "C:\Program Files\nodejs\node_global"
3:設置環境變量swift
新增:NODE_PATH 指向咱們建立的node_global文件夾緩存
PATH下面加入:C:\Program Files\nodejs\node_global(指向node_global 別忘記修改爲本身的目錄)
4:安裝webpack,打開命令行工具輸入:npm install webpack -g
5:安裝vue-cli腳手架構建工具,打開命令行工具輸入:npm install vue-cli -g
這兩步要是失敗就是環境變量沒有配置好
6:檢查 vue-V爲大寫
$ vue init webpack exprice --------------------- 這個是那個安裝vue腳手架的命令
This will install Vue 2.x version of the template. ---------------------這裏說明將要建立一個vue 2.x版本的項目
For Vue 1.x use: vue init webpack#1.0 exprice
? Project name (exprice) ---------------------項目名稱
? Project name exprice
? Project description (A Vue.js project) ---------------------項目描述
? Project description A Vue.js project
? Author Datura --------------------- 項目建立者
? Author Datura
? Vue build (Use arrow keys)
? Vue build standalone
? Install vue-router? (Y/n) --------------------- 是否安裝Vue路由,也就是之後是spa(但頁面應用須要的模塊)
? Install vue-router? Yes
? Use ESLint to lint your code? (Y/n) n ---------------------是否啓用eslint檢測規則,這裏我的建議選no
? Use ESLint to lint your code? No
? Setup unit tests with Karma + Mocha? (Y/n)
? Setup unit tests with Karma + Mocha? Yes
? Setup e2e tests with Nightwatch? (Y/n)
? Setup e2e tests with Nightwatch? Yes
vue-cli · Generated "exprice".
To get started: --------------------- 這裏說明如何啓動這個服務
cd exprice
npm install
npm run dev
以下圖:
2:在我開始安裝安裝包的時候 報代理異常沒法聯網
C:\Users\Administrator>npm install webpack -g
npm ERR! code ECONNRESET
npm ERR! errno ECONNRESET
npm ERR! network request to https://registry.npmjs.org/webpack failed, reason: r
ead ECONNRESET
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settin
gs.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly. See: 'npm help config'
npm ERR! A complete log of this run can be found in:
npm ERR! D:\nodeJs\node_cache\_logs\2019-03-05T02_18_01_066Z-debug.log
解決方法:
npm config set registry http://registry.cnpmjs.org/
或者:
直接編輯c盤下的.npmrc文件,將registry的值修改成:
registry = http:
//registry.cnpmjs.org