Cannot start React.js app in WebStorm - javascript

I am getting this series of error messages when I attempt to start React app in WebStorm.
Any ideas on how to fix this?
npm ERR! code ENOENT
npm ERR! errno -2
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open '/Volumes/GoogleDrive/My Drive/JavaScript/React/helloworld/node_modules/acorn-jsx/node_modules/acorn/package.json.1943983600'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

Related

error while making the git link to the local

$ npm i
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path E:\hr74\Hr-Portal-Team-74/package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'E:\hr74\Hr-Portal-Team-74\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\Ramya\AppData\Local\npm-cache_logs\2023-01-24T04_43_05_564Z-debug-0.log
Ramya#DESKTOP-1O1S1H1 MINGW64 /e/hr74/Hr-Portal-Team-74 (master)
i tried to run the code but iam getting this erorr

npm ERR! code ENOENT errno -2 missing package.json?

I am quite new to JS. I am trying to install something from git with
npm install git+https://github.com/celer-network/cBridge-typescript-client.git
And I get
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path /Users/ich/.npm/_cacache/tmp/git-clonerawpRN/package.json
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open '/Users/ich/.npm/_cacache/tmp/git-clonerawpRN/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/ich/.npm/_logs/2022-01-11T11_09_15_020Z-debug-0.log
I am using PyCharm on a MacBook Pro.
Best,
Dominik

npm run build is returning an error when I try to deploy a react app on firebase

npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\Users\Myname\Desktop\god\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\Myname\Desktop\god\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\Myname\AppData\Roaming\npm-cache\_logs\2021-09-02T07_53_41_547Z-debug.log```
You should check you have a package.json file in the directory you run npm install because the error isn't linked with npm.

npm start errors reactjs

Every time I try to start my react project it gives me these errors
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\Users\Mohamed Badrawy\Desktop\reactjs-basics-master\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\Mohamed Badrawy\Desktop\reactjs-basics-master\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\Mohamed Badrawy\AppData\Roaming\npm-cache\_logs\2020-06-06T11_19_44_754Z-debug.log
Mohamed Badrawy#Mohamed5 MINGW64 ~/Desktop/reactjs-basics-master
$ npm start
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path C:\Users\Mohamed Badrawy\Desktop\reactjs-basics-master\package.json
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\Mohamed Badrawy\Desktop\reactjs-basics-master\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\Mohamed Badrawy\AppData\Roaming\npm-cache\_logs\2020-06-06T11_25_12_169Z-debug.log
I tried to remove package.json and node modules then install npm again and nothing happend, also tried to delete npm cache and nothing happend
Seems you don't have the package.json file. If you claim you had that file, try removing the file and run npm init again on your project directory.
If dont have package.json file in your react project it will throw error like this so you
run below command inside your react project and it will add package.json file
npm init
You can refer this link for how to add package.json file
https://docs.npmjs.com/creating-a-package-json-file

NPM package not installing for tpp project

I am trying to follow this tutorial to get a twitch plays node server up. I installed node.js. I go to the node.js command prompt, CD to the folder containing all the information that I downloaded from the tutorial, type npm install as said in the tutorial and I get this error:
npm ERR! code ENOENT
npm ERR! syscall spawn git
npm ERR! path git
npm ERR! errno ENOENT
npm ERR! enoent Error while executing:
npm ERR! enoent undefined ls-remote -h -t ssh://git#github.com/martynsmith/node-irc.git
npm ERR! enoent
npm ERR! enoent
npm ERR! enoent spawn git ENOENT
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:
error log: here (Download)
Install gitbash from here - https://gitforwindows.org/
and run npm install in it - see if that works for you.
do cd "~documents/mde/front mission"
and perform npm install

Categories

Resources