
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
mongoose-fixtures-deps
Advanced tools
Simple fixture loader for Mongoose on NodeJS.
Fixtures can be in one file, or divided up into separate files for organisation (e.g. one file per model)
The fixture files must export objects which are keyed by the Mongoose model name, each containing the data for documents within that.
NOTE: Loading fixtures will clear the existing contents of a collection!
FOR EXAMPLE: With the file below, 3 documents will be inserted into the 'User' collection and 2 into the 'Business' collection:
//fixtures.js
exports.User = [
{ name: 'Gob' },
{ name: 'Buster' },
{ name: 'Steve Holt' }
];
exports.Business = [
{ name: 'The Banana Stand' },
{ name: 'Bluth Homes' }
];
You can also load fixtures as an object where each document is keyed, in case you want to reference another document: //users.js var ObjectId = require('mongodb').BSONNative.ObjectID;
exports.User = {
user1: {
_id: new ObjectId(),
name: 'Michael'
},
user2: {
_id: new ObjectId(),
name: 'George Michael',
father: exports.User.user1._id
}
}
var fixtures = require('fixtures');
//Objects
fixtures.load({
User: [
{ name: 'Maeby' },
{ name: 'George Michael' }
]
});
//Files
fixtures.load(__dirname + '/fixtures/users.js');
//Directories (loads all files in the directory)
fixtures.load(__dirname + '/fixtures');
Clone / download from github, and then require in your project:
var fixtures = require('./lib/mongoose-fixtures');
FAQs
Fixture loading for Mongoose on NodeJS
The npm package mongoose-fixtures-deps receives a total of 5 weekly downloads. As such, mongoose-fixtures-deps popularity was classified as not popular.
We found that mongoose-fixtures-deps demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.