Not the same error, but I had a problem with the proxy server that caused the typings install error: if you had a problem with the proxy server for npm , you will also have a problem with the proxy server for typings .
The error I was getting is:
typings ERR! message Unable to connect to "https://api.typings.org/entries/dt/selenium-webdriver/tags/2.44.0%2B20160317120654" typings ERR! caused by connect ECONNREFUSED 104.24.112.177:443
I fixed this by creating a settings file for typings in my %HOMEPATH% folder:
% HOMEPATH% \. Typingsrc
proxy=http://DOMAIN%5Cusername:password@proxy:port/ https-proxy=http://DOMAIN%5Cusername:password@proxy:port/ rejectUnauthorized=false
See these links for more details: the first one suggests placing the .typingsrc file in the project folder, but you can use the home folder, for example npm .
briantyler
source share