6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Unhandled rejection Error: EISDIR: illegal operation on a directoryが出たときにやったこと

Posted at

はじめに

npm installでUnhandled rejection Error: EISDIR: illegal operation on a directoryというエラーが出たときにやったことをメモしておきます。

原因

調べた結果、私の場合はnpmのバージョンに比べてnode.jsのバージョンが古いことが原因でした。

$ node -v
v8.8.1
$ npm -v
6.10.0

やったこと

1.nodebrewがインストールされているか確認

$ nodebrew -v
nodebrew 0.9.7

2.node.jsの最新版をインストール

$ nodebrew install-binary latest

3.インストールの確認

$ nodebrew list
v8.8.1
v12.6.0

current: v8.8.1

4.インストールしたnode.jsのバージョンを有効にする

$ nodebrew use v12.6.0
use v12.6.0

参考記事

Macにnode.jsをインストールする手順。

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?