cd /opt
wget https://npm.taobao.org/mirrors/node/latest-v10.x/node-v10.2.1-linux-x64.tar.gz
tar -zxvf node-v10.2.1-linux-x64.tar.gz
vim /etc/profile
加入
export PATH=$PATH:/opt/node-v10.2.1-linux-x64/bin
然后
source /etc/profile
换用淘宝npm源
npm install -g cnpm --registry=https://registry.npm.taobao.org
安装vue
cnpm install -g vue-cli
vue init webpack first-vue
cd first-vue
cnpm install
npm run dev
然后就可以通过 localhost:8080在浏览器里访问了
已有 0 条评论