1. 程式人生 > >使用npm安裝配置vue

使用npm安裝配置vue

npm安裝很慢(國外伺服器),所以一般推薦使用npm淘寶映象cnpm,先安裝下cnpm:

npm install -g cnpm --registry=https://registry.npm.taobao.org

安裝好cnpm後,以後使用npm的地方就可以使用cnpm替代了。

 


3.0.5
+ 安裝Vue 腳手架 @vue/cli
sudo npm install @vue/cli -g
+ 安裝Vue 腳手架外掛 @vue/cli-init
sudo npm install @vue/cli-init -g
+ 通過 vue 指令建立專案
vue init webpack 專案名

``` shell
? Project name bookshop // 設定專案名稱
? Project description A Vue.js project // 描述
? Author // 作者

? Install vue-router? Yes // 安裝路由元件
? Use ESLint to lint your code? No // ES 語法檢查外掛
? Set up unit tests No // 單元測試
? Setup e2e tests with Nightwatch? No // 測試
? Should we run `npm install` for you after the project has been created? (recom
mended) (Use arrow keys)
❯ Yes, use NPM // NPM
Yes, use Yarn
No, I will handle that myself
```

+ 切換至 專案目錄
`npm run dev` 執行專案
`npm run build` 打包釋出專案

 

ps:主要就是安裝cli 和 cli-init  然後有了之後你可以在磁碟中建立一個檔案然後cd進去,再建立這個專案