In my project directory, I ran the following from the command line prompt:
npm install mongodb
The resulting messages indicated that it installed successfully.
When I included the line:
var mongodb = require("mongodb");
The application aborted, indicating that it could not find "mongodb".
I tried the same with "mongoskin", with the same results.
I installed "express" and when I included the line:
var express = require("express");
it worked fine.
What is going wrong.
Remember that this is the windows platform.