npm问题集合

解决if not defined npm_config_node_gyp

1
npm install -g node-gyp
2
npm config set node_gyp "node node D:\工作\gopath\src\tsl\PeopleInfoCollectManagement_UnionService\node_modules\node-gyp\bin\node-gyp.js"

或者
使用 --ignore-scripts 安装 (先把某个报错的包单独安装)

npm install [email protected] --ignore-scripts

2.在npm install安装东西的时候报的这个错误,通过百度首先运行下面的的命令:

npm cache clean –force

即可解决pm install出现”Unexpected end of JSON input while parsing near”错误。

npm操作

  • 找不到model
    npm install --save-dev webpack

  • 查看依赖框架joi版本
    npm view joi versions --json

  • express-validator6.1.1报错validate is not a function
    npm install [email protected] --save

你可能感兴趣的:(npm问题集合)