I have this start params in package.json
package.json
\"scripts\": { \"start\": \"node bin/www\" },
It is running my express app when I a
You just need to use start in the right order!
start
"start": "npm run dev & start http://localhost:8000",
Bad
"start": "start http://localhost:8000 & npm run dev",
Good