1. ホーム
  2. bash

npm err インストールエラーの解決策

2022-02-12 09:49:31
npm ERR! code ETIMEDOUT
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmjs.org/hexo-deployer-git failed, reason: connect ETIMEDOUT 211.136.113.1:8080
network This is a problem related to network connectivity.
network In most cases you are behind a proxy or have bad network settings.
npm ERR!
network If you are behind a proxy, please make sure that the
network 'proxy' config is set properly. See: 'npm help config'


npm installの実行時に上記のエラーが発生し、いろいろと試した結果、最終的に http://stackoverflow.com/questions/20397883/npm-doesnt-install-any-modules-network-socket-hangs-up の方法で解決しました。

解決方法

1. まず、以前のプロキシ設定をクリアする

npm config set proxy null
npm config set https-proxy null

また、以下のコードで最初にプロキシ設定を確認することができます。もしnullを返したら、それをクリーンアップする必要はありません。

npm config get proxy
npm config get https-proxy

2.リセット

npm config registry http://registry.cnpmjs.org/