Npm run server doest work/ cant run server with - node.js

command "npm run serve" doest work, and i get this:
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\Users\user/package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\user\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: <>br
npm ERR! C:\Users\user\AppData\Local\npm-cache_logs\2022-02-24T23_43_08_331Z-debug-0.log
I tried reinstalling/ installing the node, npm, i tried and didnt work:
npm config set ignore-scripts false

It looks like you are executing NPM from your user home directory. You need to run it in a project directory, and then run npm init, along with the corresponding npm install <X> commands. Do not run init if the project is already initialized.

Related

I can't run the angular app , I get this error

npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\User\Documents\GitHub\angular-11-spring-boot-jwt-authentication\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\User\AppData\Roaming\npm-cache_logs\2021-08-09T10_56_11_734Z-debug.log
Error
Delete node_modules folder and re-install all your dependencies using npm install
Ensure that you have a stable version of Node
Run npm start/ng serve from the angular folder

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

unable to run the react project- the following error enoent ENOENT

Whenever I am running npm start in my project it displays the following error
npm ERR! code ENOENT npm ERR! syscall open npm ERR! path
/home/abhi/package.json npm ERR! errno -2 npm ERR! enoent ENOENT: no
such file or directory, open '/home/abhi/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/abhi/.npm/_logs/2020-12-17T04_15_31_411Z-debug.log
abhi#Abhi:~/Projects/demo1$
I tried everything to fix the issue but did not find a solution.
what I am missing in JSON.package ??
You need to navigate to your app directory to be able to run npm start.
seems you are running it out of that directory.
type
cd "your app path"
then
npm start
is your package initialised at all? did you run
npm init
or your dependencies and their versions are correct? and the node version too?
Clear everything from the cache and try installing again
npm cache clean

Downloading/Running another persons React App

I downloaded off Github a friends react app to see what some functions are doing and design. I've been trying to run the application but keep running into errors. I extracted the folder out of the Zip file and in the command line run npm install and then doing npm start the error I encounter is the following:
PS C:\WINDOWS\System32\WindowsPowerShell\v1.0> npm start
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\WINDOWS\System32\WindowsPowerShell\v1.0\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open
'C:\WINDOWS\System32\WindowsPowerShell\v1.0\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\RafayChaudhary\AppData\Roaming\npm-cache\_logs\2020-02-
03T19_49_57_690Z-debug.log
Please let me know what i am doing wrong.
Your PowerShell directory is pointing to the System dir for PowerShell i.e.
PS C:\WINDOWS\System32\WindowsPowerShell\v1.0>
You need to change this to the directory of your React app e.g.
cd C:\Path\To\React\App
npm i && npm start

How to fix npm start errors

I just downloaded a dashboard that uses react.js modules so when get to the dashboards source folder and try to run the command 'npm start' I get the error below:
I tried the following commands but it couldn't work
sudo npm -g uninstall node
npm install node
npm cache clean
sudo npm install -g npm
npm install
npm start
npm ERR! path /home/lamechd/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/lamechd/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/lamechd/.npm/_logs/2019-06-04T09_51_23_106Z-debug.log
NB/ Iam using manjaro Operating System based on archlinux

Resources