0

I am installing Jquery package using nodeJs command prompt but it is giving me error.

here i did the following thing ...

  1. Installed Node Js
  2. I have set proxy using 'npm config set https-proxy "proxy address"'.
  3. Installed bower using "npm install -g bower requirejs"
  4. When i run command "bower install jquery" it is giving me following error

    C:\wamp\www\RequireBackbone>bower install jquery

    bower retry Request to https://bower.herokuapp.com/packages/jquery failed with ECONNRESET, retrying in 1.1s

    bower retry Request to https://bower.herokuapp.com/packages/jquery failed with ECONNRESET, retrying in 3.1s

    bower retry Request to https://bower.herokuapp.com/packages/jquery failed with ECONNRESET, retrying in 5.2s

    bower retry Request to https://bower.herokuapp.com/packages/jquery failed with ECONNRESET, retrying in 9.4s

Rushikesh jogle
  • 591
  • 2
  • 9
  • 29

1 Answers1

1

This might be related to a known issue in bower. Try setting this environment variable -

export HTTPS_PROXY=http://<proxy_server>
vinayr
  • 11,026
  • 3
  • 46
  • 42