npm ERR! failed at the myfrontend#3.3.0 build script - node.js

I just got a new laptop for work, and trying to set it up for work. As I tried to run a service-build in my terminal as the command of
"./data-management/run_update_version && docker-compose -f docker-compose/docker-compose.yml build"
I got the error as below.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! myfrontend#3.3.0 build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the myfrontend#3.3.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2020-11-23T06_10_10_366Z-debug.log
I have tried many solutions such as clean cache, redo the npm install, but none of them worked. Can anyone please help.

So apparently, I figured out that this error means that there is no enough memory in the system. What I did is to go into docker desktop setting, and increase the memory, and that solved everything.

Related

Getting error on npm run start in blockchain-explorer hyperledger

I am trying to use hyperledger's blockchain-explorer for my production network. But when following the instructions I got this error when I started running npm start in the blockchain-explorer directory:
************************************************************************************
**************************** Hyperledger Explorer **********************************
************************************************************************************
./start.sh: 24: Syntax error: "(" unexpected
npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! hyperledger-explorer#1.1.8 app-start: `./start.sh`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the hyperledger-explorer#1.1.8 app-start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/conqueror/.npm/_logs/2022-10-05T02_01_23_907Z-debug.log
ERROR: "app-start" exited with 2.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! hyperledger-explorer#1.1.8 start: `run-s build app-start`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the hyperledger-explorer#1.1.8 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /home/conqueror/.npm/_logs/2022-10-05T02_01_23_940Z-debug.log
Can someone tell me how I can fix it. I'm really stuck!
If you are using docker for explorer setup then you have simply set all the paths and config in your cloned repo. And then just need to perform the below commands.
1. docker system prune
2. docker volume prune
3. docker-compose down
4. docker-compose up

NPM fails with the code: npm ERR! code ELIFECYCLE

I am fairly new to node and javascript. I am trying to run this on my localhost
https://github.com/bitpay/wallet
originally I was using node.js v14 but I was getting an error. I did some research and found that I should downgrade to node.js v11.
After doing so I get an error after trying to run npm install.
'rm' is not recognized as an internal or external command,
operable program or batch file.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! copay#12.1.1 env:dev: `rm -f src/environments/index.ts && cp src/environments/dev.ts src/environments/index.ts
npm ERR!
npm ERR! # Environment set to: dev
npm ERR!
npm ERR! `
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the copay#12.1.1 env:dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Jacob\AppData\Roaming\npm-cache\_logs\2021-03-01T19_15_48_533Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! copay#12.1.1 postinstall: `npm run env:dev && npm run prompt && npm run patch:bwc && npm run patch:walletconnec
t`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the copay#12.1.1 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Jacob\AppData\Roaming\npm-cache\_logs\2021-03-01T19_15_48_594Z-debug.log
I'm not sure exactly what to do to fix this. I've read other posts and tried to do what they suggest. I deleted the node_modules file and clear the cache but I am still getting the same error. I've noticed it's saying 'rm' is not recognized as an internal or external command. I've tried to change it to del instead of rm but that doesn't seem to help either. Any suggestions on how to get this to work on my localhost?
this is the first line from the log your shared indicating what is the error
'rm' is not recognized as an internal or external command,
it happens since (as you mentioned) you are running windows and i assume you are running npm under cmd or powershell, which does not have rm command natively.
i would suggest your to switch to windows subsystem for linux, which should have system command like rm and see whether it solves your issue.

Failed to start npm start

I am trying to run my React project, but I am not able to run it. The project contains typescript enabled with eslint. I tried to solve the issue with the help of previously asked questions Question, but that did not work for me.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! slipstream-frontend#0.3.0 lint: `eslint --ext js,ts,tsx src`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the slipstream-frontend#0.3.0 lint script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\ROHIT AGGARWAL\AppData\Roaming\npm-cache\_logs\2020-10-12T06_02_13_786Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! slipstream-frontend#0.3.0 prestart: `npm run lint`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the slipstream-frontend#0.3.0 prestart script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\ROHIT AGGARWAL\AppData\Roaming\npm-cache\_logs\2020-10-12T06_02_15_471Z-debug.log
I have tried to delete package.json file and then
npm cache clean
npm install
That didn't worked for me.
Yes this might happen,
Start with commands in terminal
npm unit react-app app_name
cd app_name
npm start

Error after npm run eject

I am learning how to make a mobile app using react native but every time I run in the terminal npm run eject it gives me this error at the end I tried several npm versions but I keep always getting this error
Ejected successfully!
Please consider letting us know why you ejected in this survey:
goo.gl/forms/iD6pl218r7fn9N0d2
The batch file cannot be found.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! hello-world2#0.1.0 eject: `react-native-scripts eject`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the hello-world2#0.1.0 eject script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\AppData\Roaming\npm-cache\_logs\2018-06-05T11_28_47_708Z-debug.log

Npm start gives the error

everyone!
I am trying to run default task on npm run command on Windows 10.
That is an error that I have got while using it.
npm ERR! code ELIFECYCLE
npm ERR! errno 9
npm ERR! builderLight#0.0.15 start: `bower install && gulp --debug`
npm ERR! Exit status 9
npm ERR!
npm ERR! Failed at the builderLight#0.0.15 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\User\AppData\Roaming\npm-cache\_logs\2018-04-29T15_01_45_882Z-debug.log
How to fix this bug?
You simply have to run first: npm install or bower install

Resources