In the project directory for my application,at the command prompt I didnpm install mongodb
The messages indicated that it installed ok.
In my test program I add the line:
var mongodb = require("mongodb");
The application aborted with a message saying it could not find "mongodb".
I also tried with mongoskin, getting the same result.
When I installed "express and added the following line":
var express = require("express");
it worked fine.
What is going wrong?
Please remember that this is the windows platform.