node and Error: EMFILE, too many open files

前端 未结 18 1774
终归单人心
终归单人心 2020-11-28 17:58

For some days I have searched for a working solution to an error

Error: EMFILE, too many open files

It seems that many people have the same proble

18条回答
  •  一整个雨季
    2020-11-28 18:29

    For nodemon users: Just use the --ignore flag to solve the problem.

    Example:

    nodemon app.js --ignore node_modules/ --ignore data/
    

提交回复
热议问题