npm install - npm err! fetch failed in jenkins? -


getting following errors in jenkins.. help

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

something cdn hosting of version 1.0.5. can force dependency using cookie-signature require 1.0.6. express dependent on module , able resolve issue so:

"express": {     "version": "~4.9.0",      "from": "express@~4.9.0",         "dependencies": {            "cookie-signature": {              "version": "1.0.6",              "from": "cookie-signature@1.0.6"         }     } }, 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -