Home > database >  trying to make "npm run dev" create 2 shell instances
trying to make "npm run dev" create 2 shell instances

Time:03-24

I'm using json-server as my local server for a nuxt project and i want to automatically launch the server and then run the project on another shell instance using "npm run dev"

in the scripts tag in package.json this is what i came up with :

    "dev": "json-server --watch db.json --port 3004 & nuxt"

but this script only starts the server

CodePudding user response:

try concurrently

npm install -g concurrently

"dev": "concurrently \"json-server --watch db.json --port 3004\" \"nuxt""

  • Related