Can someone tell me where can I find the Node.js modules, which I installed using npm?
npm
If a module was installed with the global (-g) flag, you can get the parent location by running:
-g
npm get prefix
or
npm ls -g --depth=0
which will print the location along with the list of installed modules.