I am trying to install React.js. In this regard, I run npm install -g create-react-app
and create-react-app my-app
. Then I run the npm start
command but I am getting below error.
Asked
Active
Viewed 488 times
1

Kamil Naja
- 6,267
- 6
- 33
- 47

abu abu
- 6,599
- 19
- 74
- 131
-
I face a similar issue so instead of using npm I used yarn to install dependency and it solved my problem – Gaurav Sharma Apr 14 '18 at 10:54
-
1https://stackoverflow.com/questions/22475849/node-js-error-enospc check this thread – Tomasz Mularczyk Apr 14 '18 at 11:17
1 Answers
3
Please delete folder node_modules and clean npm cache
npm cache clean -f
Also try remove package-json.lock file.
After this re-run your command.

Kamil Naja
- 6,267
- 6
- 33
- 47