I am trying to install a module in node and i have never done this before. I have downloaded the busboy module which is a folder named "busboy-master" coming with three subfolders and a few files. I have put the "busboy-master" folder inside C:\Program Files\nodejs\node_modules
In a node command prompt I type: npm install busboy
At this point the console seems to be doing stuff but doesn't seem to give either error or confirmation.
Anyway, when I run my javascript I still get an error on the line that says: var busboy = require('busboy');
and the error from the console is : Error, cannot find module busboy.
I have also tried to put the busboy-master folder in this directory without luck: C:\Program Files\nodejs\node_modules\npm\node_modules.
I have never installed a module before and I can't find any walkthroughs on how to do this. Is there any steps I am missing or something more or different I should be doing?
Thanks!