美文网首页
创建项目命令

创建项目命令

作者: 卐_c2a9 | 来源:发表于2018-10-23 08:02 被阅读0次

    1.首先需要上传coding

    git init
    git add .
    git commit -m "first commit"
    git push -u origin master
    

    2.安装淘宝镜像

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

    3.需要安装webpack

    cnpm install webpack -g
    

    4.安装vue-cli脚手架

    cnpm install vue-cli -g
    

    5.使用vue-cli搭建项目

    vue init webpack(模板名)dome(项目名)
    

    6.cd项目名,进入文件夹。

    7.检查有没有node-modules文件夹,如果有直接开启服务,如果没有,使用cnpm install命令安装依赖,然后开启服务。

    8.开启一个服务

    npm run dev
    

    相关文章

      网友评论

          本文标题:创建项目命令

          本文链接:https://www.haomeiwen.com/subject/dvhozftx.html