Reputation: 1
$npm start
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path /home/gatua/package.json
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open '/home/gatua/package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! /home/gatua/.npm/_logs/2020-05-22T12_23_50_208Z-debug.log
Upvotes: 0
Views: 75
Reputation: 593
Simply you are running npm
command outside of your project folder. If it's not the case. first, you need to create package.json file by running npm init
command.
Upvotes: 1