I want to do an npm install in a ton of directories.
Can I create a shell script that will run npm install in all of them asynchronously? So I don't have to wait long for all of them to be done?
IE
cd foo; npm install; cd ..;
cd bar; npm install; cd ..;
etc.
start npm install, basically