npm相关

收集一些window下npm相关的资料。


1.npm未能加载Visual C++组件,解决办法win10

错误提示如下:

image.png

以管理员身份运行:Windows PowerShell

npm install --global --production windows-build-tools
npm install -g node-gyp

2.npm的开发模式和生产模式的理解

//执行该命令的时候,模块会记录在dependencies里面;
npm install xxx --save    

//执行该命令的时候,模块会记录在devDependencies里面;
npm install xxx --save-dev

对于仅在开发模式下使用的包,可以安装到devDependencies中;
对于开发模式和生产模式下都需要使用的包,就直接安装到dependencies中。

然后在安装模块时

//开发环境下, 执行该命令,安装所有模块;
npm install  

//生产环境下, 执行该命令,仅安装记录在devDependencies里面的模块;
npm install --production

你可能感兴趣的:(npm相关)