Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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"

Comment

PREVIOUS NEXT
Code Example
Shell :: install qtpy 
Shell :: yarn change version 
Shell :: upload local to remote ssh 
Shell :: how to uninstall global babel jest npm 
Shell :: copy all files from one directory to another 
Shell :: how to fix libffi missing in macos 
Shell :: push exsisting repo 
Shell :: Create Flask Virtual Environments 
Shell :: open jar file with command prompt 
Shell :: untar ubuntu 
Shell :: httrack 
Shell :: cannot find mui lab module 
Shell :: ubuntu install brew 
Shell :: concatenate multiple zip files linux 
Shell :: centos history rollback 
Shell :: git branch command 
Shell :: number of lines 
Shell :: change user of a directory in linux 
Shell :: squash commits git 
Shell :: redirect to file 2&1 
Shell :: Rename File Extension In folder 
Shell :: remove old docker installs linux mint 
Shell :: echo new line in a file bash 
Shell :: linux edit file 
Shell :: env file added to gitignore but git still tracking it 
Shell :: install vagrant ubuntu 
Shell :: digit sum number in c 
Shell :: file name from path linux 
Shell :: how to upload on github with command 
Shell :: netspeed ubuntu 20.04 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =