How can I install nodejs modules to appfog

appfog, module, node.js

Solution

Basically, you just need to install the dependencies in your local environment and everything should be just fine. Simply specify all of your dependencies in your `package.json` file, run a typical `npm install`, and if the modules are properly installed in your local environment then they will be pushed to AppFog when you run `af update`.

Problem

Normally in local, I use cmd, command line to install any nodejs module using "npm install testing or connect or etc.." But I decided to use appfog as server and I add nodejs to my project on appfg but probably I am gonna need some nodejs modules like testing, connect, request etc.. The problem is I couldnt found tool like cmd on appfog or any way to add nodejs modules. How can I do this?

Original source