I have a node app that I just started working with and each time I try to run it, it says there is a missing module. I\'ve just been using npm install ... for each
You can run npm install yourModule --save in order to install and automatically update package.json with this newly installed module.
So when you run npm install a second time it will install every dependecy previously added and you won't need to reinstall every dependency one by one.