一、先安装node.js,安装后输入npm -v查看npm版本
二、打开命令行 安装淘宝的镜像
npm config set registry https://registry.npm.taobao.org
三、配置后可通过下面方式来验证是否成功
npm config get registry
最后运行命令:
npm install -g cnpm --registry=https://registry.npm.taobao.org
PS:这里应该会报错,权限问题 在前面加上sudo回车输入密码执行
四、安装node-sass
cnpm install node-sass
PS:为了解决经常出现的sass包错误
五、安装脚手架
cnpm install
六、启动
npm run dev
网友评论