Trouble with installing Nodemon on Windows machine - node.js

I have been running into some issues while trying to install nodemon globally.
here's what it looks like:
$ npm i -g nodemon
npm ERR! code ENOENT
npm ERR! syscall lstat
npm ERR! path C:\Users\krishnna sarrdah\AppData\Roaming\npm
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\Users\krishnna sarrdah\AppData\Roaming\npm'
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! C:\Users\krishnna sarrdah\AppData\Local\npm-cache\_logs\2021-01-22T16_04_35_377Z-debug.log

Your node installation is slightly out of date, I solved this problem with this
repair Node installation
npm update -g

Related

WSL - Having issues when running npm install

I'm trying to run npm install on a project but I keep getting this error
npm ERR! code ENOENT
npm ERR! syscall chmod
npm ERR! path /home/mvargas/work-repos/red-keep/node_modules/#pm2/io/node_modules/semver/bin/semver
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, chmod '/home/mvargas/work-repos/red-keep/node_modules/#pm2/io/node_modules/semver/bin/semver'
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/mvargas/.npm/_logs/2021-04-15T01_14_50_914Z-debug.log
I'm using WSL2 with Ubuntu 20.04lts, node version is 15.14.0 and npm version is 7.7.6
Solution: Downgraded to node 10

I cannot get NPM Start to work in Visual Code Studio; It gives me an errors I cannot understand

Here's how it goes:
PS C:\xampp\htdocs\travel-react> npm start
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\xampp\htdocs\travel-react\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\xampp\htdocs\travel-react\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! C:\Users\18652\AppData\Roaming\npm-cache\_logs\2020-12-19T05_26_03_774Z-debug.log
How do I fix this? Thanks!
It seems to be a cache problem,try to delete those folders:
C:\Users\yourusername\AppData\Roaming\npm\ and C:\Users\yourusername\AppData\Roaming\npm\
then try npm install -g and try again
Create package.json file using npm init,
You can read more about package.json here,
https://medium.com/#krishankantsinghal/package-json-understanding-it-for-your-nodejs-reactjs-angularjs-or-any-javascript-app-which-use-5a18de90d33

Is there a way that I can clear this npm error

$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
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.

Getting error if i install any packege in react native npm ERR! code ENOENT

NPM VERSION - 6.13.4
NODE VERSION - v12.16.1
I am trying to install npm i react-native-router-flux --save
and getting error
npm ERR! code ENOENT
npm ERR! syscall rename
npm ERR! path G:\reactnative\Testing\node_modules\babel-plugin-react-transform
npm ERR! dest G:\reactnative\Testing\node_modules\.babel-plugin-react-transform.DELETE
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, rename 'G:\reactnative\Testing\node_modules\babel-
plugin-react-transform' -> 'G:\reactnative\Testing\node_modules\.babel-plugin-react-transform.DELETE'
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! C:\Users\Bhaman\AppData\Roaming\npm-cache\_logs\2020-03-29T08_40_57_081Z-debug.log
How can i solve this error any idea suggest me
i am checking this ANSWER link but getting no solutions
Thanks
ERROR SOLVED
using this command
react-native start --reset-cache --verbose
DOCUMENT LINK

How do I install npm dependencies from package-lock.json only?

I've run commands like npm install js-yaml and now that has generated a package-lock.json file.
How can I then use this file to reinstall the dependencies?
chris#instance-1:~/fuck3$ npm ci
npm ERR! path /home/chris/fuck3/package.json
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open '/home/chris/fuck3/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/chris/.npm/_logs/2019-07-11T17_31_26_335Z-debug.log
chris#instance-1:~/fuck3$ ls
index.js job.yaml package-lock.json

Resources