MongoDB storage engine for the Seed ORM framework. This package provides a backend for Seed models and graphs to persist data in MongoDB. It requires the seed package and the node-mongodb-native driver. Version 0.6.0 is stable but the project appears to be in maintenance mode with infrequent updates. It supports MongoDB query syntax directly and works with Seed's Model and Graph components.
npm install seed-mongodbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Sets up a MongoDB store, defines a Seed Model, and saves an instance.
npm install seed seed-mongodb
Ensure host, port, and db are correct. No authentication supported by default.
Consider migrating to a modern ORM like Mongoose or Sequelize.
Use MongoDB query operators like $gt, $regex, etc.
Run MongoDB without authentication on localhost:27017 for tests.
npm install seed
Start MongoDB server or adjust host/port in MongoStore constructor.
Use require('seed') and require('seed-mongodb') with CommonJS.Pass { store: store } as options in extend() call.