Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Mongoat is a MongoDB ODM. It is written on top of the mongodb npm package to add new features.
Because Mongoat is written on top of the mongodb native driver, you can find more about here
$> npm install mongodm
var mongoat = require('mongoat');
var url = 'mongodb://localhost:27017/myproject'; // Connection URL
mongoat.MongoClient.connect(url)
.then(function (db) {
// then use it the same way as native mongodb driver
});
You can add multiple before and after hooks for insertions, updates and removals:
db.collection('collectionName').before('insert', function (docToInsert) {
// triggered when calling to insert()
});
db.collection('collectionName').before('update', function (docToUpdate) {
// triggered when calling to update() or findAndModify()
});
db.collection('collectionName').before('remove', function (docToRemove) {
// triggered when calling to remove()
});
db.collection('collectionName').after('insert', function (docToInsert) {
// triggered when calling to insert()
});
db.collection('collectionName').after('update', function (docToUpdate) {
// triggered when calling to update() or findAndModify()
});
db.collection('collectionName').after('remove', function (docToRemove) {
// triggered when calling to remove()
});
Enable datetime feature:
db.collection('collectionName').datetime(true); // Default is false
it will add a createdAt field to all new inserted documents using:
db.collection('collectionName').insert(document, options);
or using one of the following method within the option upsert: ture
db.collection('collectionName').update(query, update, options);
db.collection('collectionName').findAndModify(query, sort, update, options);
it will add a updatedAt field to all updated documents using:
db.collection('collectionName').update(query, update, options);
// or
db.collection('collectionName').findAndModify(query, sort, update, options);
Enable versioning feature:
db.collection('collectionName').version(true); // Default is false
Enabling this feature for a collection, so each time you perform an insert/update/remove it will create a document in the collection collectionName.vermongo and increment the version of the updated document. The _id in this collection is a composite ID, { _id: _id, _version: _version }. The document in the MyCollection collection will also receive a _version field.
If we want to restore a version
db.collection('collectionName').restore(versio); // Default is false
db.collection('collectionName').restore(0); // restore the last version
db.collection('collectionName').restore(-2); // restore the last version -2
more about versioning feature here
npm test
Or to show up code coverage npm run cover
it will generate ./coverage
folder
Please read our Contributing Guidlines before submitting a pull request or an issue !
The MIT License MIT
Copyright (c) 2015 Dial Once
FAQs
Mongoat is a MongoDb ODM
We found that mongoat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.