Installing React-Redux causes the chokidar Problem

Viewed 201

Hello guys I keep on getting the error below when I try to install react-redux

Error from chokidar (/home/lamechdesai/Projects/WebApp/JavaScript/React_JS/Clydan/flexanalytics_frontend/flexanalytics_frontend/src/views/Reports/Financial): Error: ENOSPC: System limit for number of file watchers reached, watch '/home/lamechdesai/Projects/WebApp/JavaScript/React_JS/Clydan/flexanalytics_frontend/flexanalytics_frontend/src/views/Reports/Financial/ReportsRevenueAccountDivisionMonthSubClass.js'
1 Answers

Try the following:

  1. Remove your node_modules folder and package-lock.json file.
  2. Clean npm cache npm cache clean --force
  3. You can verify by npm cache verify.
  4. Update npm sudo npm i -g npm - this is the key step, it should reinstall chokidar.
  5. Install node_modules again by running npm i --force
Related