Reputation: 3
I am new to node.js I have question about how to run mulitple files at once.
let's say I have scripts_1.js
and scripts_2.js
How can I run the both at the same time.
I know I can do this node scripts_1.js && scripts_2.js
but the problem is that I need to wait for scripts_1
to finish so scripts_2.js
can run.
I tried bash scripts
start.sh
start node "scripts_1.js"
start node "scripts_2.js"
but I don't like it I need a better way. any one can help. Thanks in advance
Upvotes: 0
Views: 1384
Reputation: 16576
You can run multiple commands asynchronously by separating them with one ampersand in shell:
node scripts_1.js & node scripts_2.js
Upvotes: 1