I have this start params in package.json
package.json
\"scripts\": { \"start\": \"node bin/www\" },
It is running my express app when I a
As far as I know it's like writing a bash command:
// Windows "start":"start http://localhost:8081 & node bin/www" // Mac "start":"open http://localhost:8081 && node bin/www" // Linux "start":"xdg-open http://localhost:8081 && node bin/www"