简体   繁体   中英

npm install throwing errors

The code throws the same error when npm install or npm install --save is called.

npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path /Users/andyc/package.json
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open '/Users/andyc/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!     /Users/andyc/.npm/_logs/2021-11-04T02_19_18_554Z-debug.log

any idea why this is happening?

It seems you don't have package.json. So, you need to follow these steps, for every new project

Step: 1

npm init --yes

Step: 2

npm i --save 'packagename'

Step: 3 - When you delete and re-install packages by deleting node_modules, run this:

npm i/install

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM