How add modul to node.js

I want to ask how can I add modul to node.js. I me I've installed node.js and want to create a simple form for uploading image. When I require a 'formidable' module and create a new object from it, i get an error 'cannot find the modul formidabe' .

Via npm (the node package manager), try this from your command line:

npm install formidable

as explained in the docs. After that it should work.