安装
前提条件
依赖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