Member-only story
4 Solutions To Run Multiple Node.js or NPM Commands Simultaneously
At Some Point, Everyone Has this Problem…

Funny Story, NPM Doesn’t Provide an Immediately Obvious Way to Run Multiple Scripts at Once
We’ve all been there — you open up an app for local development and you need to run your Express/Node.js backend server and your React UI server simultaneously, but in order to do so you have to open up two terminal (or more) windows, cd
into two different package.json
files via the command line and run two different start commands.
Sound familiar? If only there were a better way…
The Solution(s)
Quite simply, is a better way. And like all good things in web development today, there’s a thousand different ways to achieve the same end.
Today, I will share four ways to run multiple Node.js commands or NPM scripts at once.