package json scripts multiple commands
"start": "webpack && node server/server.js"
package json scripts multiple commands
"start": "webpack && node server/server.js"
how to run multiple npm scripts parallel
If you're using an UNIX-like environment, just use & as the separator:
"dev": "npm run start-watch & npm run wp-server"
Otherwise if you're interested on a cross-platform solution, you could use npm-run-all module:
"dev": "npm-run-all --parallel start-watch wp-server"
npm run multiple scripts sequentially
npm run pre-build && npm run build_logic && npm run post_build && npm run exit
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us