美文网首页
webpack开发流程

webpack开发流程

作者: 糯米卷爱吃玉米 | 来源:发表于2017-05-22 11:20 被阅读0次

    安装

    前提条件

    依赖nodejs

    • 首先全局安装
      $ npm install webpack -g

    • 然后创建package.json
      $ npm init

    • 安装到项目依赖
      $ npm install webpack --save-dev

    常见问题

    1、 安装时出现webpack --save-dev npm ERR! Windows_NT 6.1.7601 npm ERR!
    解决办法:
    $ npm config set proxy null(npm config delete proxy) $ npm config set https-proxy null $ npm config set strict-ssl false
    2、fetch Metadata sill map to registry uri https://registry.npmjs.org/normalize-r
    解决方法:
    更换为淘宝镜像
    npm config set registry [https://registry.npm.taobao.org](https://registry.npm.taobao.org/)

    - 查看环境变量:set path

    相关文章

      网友评论

          本文标题:webpack开发流程

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