npm-check-updatesでFetchError: Response timeout while trying to fetch ○○
今回はnpm-check-updatesでFetchError: Response timeout while trying to fetch ○○というエラーが起きた時の対処法についてご紹介いたします。
npm-check-updatesでFetchError: Response timeout while trying to fetch ○○
npm-check-updatesのncuコマンドを打つと、下記のようなエラーが起きることがあります。
1 |
FetchError: Request Timeout. npm-registry-fetch defaults to 30000 (30 seconds). Try setting the --timeout option (in milliseconds) to override this. |
結論から言うと、エラーメッセージに書かれている通り、timeoutオプションを付ければ正常に動作します。
私はnpxで一時的にnpm-check-updatesをインストールしてそこからncuコマンドを叩いたのですが、私の場合は下記のようにタイムアウトを150秒に設定することでうまくいきました。
1 |
npx -p npm-check-updates -c "ncu --timeout 150000" |
終わりに
今回はnpm-check-updatesでFetchError: Response timeout while trying to fetch ○○というエラーが起きた時の対処法についてご紹介いたしました。
ディスカッション
コメント一覧
まだ、コメントがありません