I have this start params in package.json
package.json
\"scripts\": { \"start\": \"node bin/www\" },
It is running my express app when I a
For cross-platform support use open-cli.
Install it:
npm install --save-dev open-cli
Add it to your scripts:
"start": "open-cli http://localhost:8081 && node bin/www"