npm err!取詹金斯失败?

问题描述:

获得以下错误的詹金斯..任何帮助npm err!取詹金斯失败?

npm ERR! fetch failed https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.5.tgz npm WARN retry will retry, error on last attempt: Error: fetch failed with status code 502 npm ERR! fetch failed https://registry.npmjs.org/uid-safe/-/uid-safe-1.0.1.tgz npm WARN retry will retry, error on last attempt: Error: fetch failed with status code 502

东西了的版本1.0.5的CDN托管。您可以使用cookie签名强制依赖项要求1.0.6。快递是依赖于此模块,您将能够解决问题,如下所示:

"express": { 
    "version": "~4.9.0", 
    "from": "[email protected]~4.9.0", 
     "dependencies": { 
      "cookie-signature": { 
      "version": "1.0.6", 
      "from": "[email protected]" 
     } 
    } 
},