0
2

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.

nodemon実行時のエラー

Posted at

エラー内容

nodemonを実行した際に次のようなエラーが発生し、nodemonのプロセスが停止してしまう。

$ nodemon ./app.js
[nodemon] 1.11.0
[nodemon] to restart at any time, enter `rs`
[nodemon] watching: *.*
[nodemon] starting `node ./app.js`
[nodemon] Internal watch failed: watch /Users/xxx/Documents/projects/xxx.js ENFILE

エラーの原因

nodemonではファイルを監視し、監視対象のファイルが変更されるとプロセスを再起動する。このエラーは、その監視対象のファイル数が多すぎるため発生する。

解決方法

不要なファイルを監視対象から外すことで解決できる。nodemonを実行するディレクトリにnodemon.jsonというファイルを作り、監視対象から外すファイルリストを次のように記述する。

{
  "ignore": ["*.test.js", "fixtures/*"]
}

参考サイト

0
2
2

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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?