Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

easy-mongo-fixture

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-mongo-fixture - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "easy-mongo-fixture",
"version": "1.0.0",
"version": "1.0.1",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

easy-mongo-fixture
==================
Mongo fixture manager for [easy-fixture](https://github.com/ivpusic/easy-fixture) lib.
### Example
```
var fixture = require('easy-fixture');
var MongoFixture = require('easy-mongo-fixture');
// init MongoFixture middleware
var mongoFixture = new MongoFixture({
database: 'test',
collections: ['products', 'categories'],
dir: 'fixture',
override: true
});
// set middleware to use
fixture.use(mongoFixture);
// collect data from mongo database and save it to local file(s)
fixture.save();
// when we need to load fixture, call this method to read from fixture file,
// and to import wanted data
fixture.load();
```
# License
**MIT**
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc