Questions tagged [concurrently]
53 questions
0
votes
0 answers
npm "concurrently" mode EADDRINUSE
The idea is to run 3 create-react-app instances at once:
alias runMicro='cd /Users/USERNAME/Documents/microfrontend/app-container; concurrently "yarn start --prefix /Users/USERNAME/Documents/microfrontend/micro-frontend" "yarn start --prefix…

luiquao
- 1,094
- 4
- 21
- 46
0
votes
1 answer
How can i run concurrently node.js and Vue?
i am trying to run the concurrently library and i get some trouble with commands. i am using this one:
https://www.npmjs.com/package/concurrently
i am tried at my server to change the package.json:
"scripts": {
"test": "echo \"Error: no test…

John Doe
- 363
- 1
- 5
- 17
0
votes
1 answer
Problem with installing 'concurrently' in node project
I'm trying to install concurrently but facing this issue
PS D:\devconnector> npm i concurrently
npm ERR! Unexpected end of JSON input while parsing near '...TURE-----\r\nVersion:'
npm ERR! A complete log of this run can be found in:
npm ERR! …

C713
- 62
- 8
0
votes
1 answer
npm run build issues when using concurrently
I am running a react app that uses express as a backend. I followed this tutorial on how to connect the two then deploy to heroku. In short I am running express on port 5000 as instructions tell me to, and on client side in the package json proxy to…

VI11age_ID10T
- 161
- 11
0
votes
2 answers
My full stack application won't run NodeJS and React concurrently
Running the client server and the backend server independently will produce no errors but mongoDB exits automatically when client and server run concurrently
npm start
[nodemon] 2.0.2
[nodemon] to restart at any time, enter `rs`
[nodemon] watching…

fj785
- 133
- 1
- 10
0
votes
2 answers
npm run multiple services including serverless offline from different directories
Currently
I have a local test environment setup.
I am trying to migrate to serverless and have setup serverless-offline for local testing.
I cannot get my existing client + server to run, alongside serverless-offline.
DIRECTORY:
root:
-…

Wronski
- 1,506
- 3
- 18
- 37
0
votes
2 answers
Can't start client and server together with concurrently
index.js:
const port = process.env.PORT || 3000;
server package.json:
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
…

oneone
- 32
- 1
- 9
-1
votes
2 answers
NPM start script runs from local shell but fails inside Docker container command
I have a Node app which consists of three separate Node servers, each run by pm2 start. I use concurrently to run the three servers, as a start-all script in package.json:
"scripts": {
...
"start-all": "concurrently \" pm2 start…

ChrisM
- 2,128
- 1
- 23
- 41