
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
mongo-created-modified
Advanced tools
Mongo collection decorator that add created and modified timestamp on documents
Decorator for a mongo collection that add created and modified timestamp to the documents.
A created-modified document will have the properties createdDate sand lastModifiedDate.
{
createdDate: new Date(),
lastModifiedDate: new Date(),
data: ...
}
var mongoCreatedModified = require('mongo-created-modified');
mongodb.Db.connect(connection, function(err, db){
if(err) throw err;
database.collection('createdModifiedCollection', function (err, col) {
if(err) throw err;
var createdModifiedCollection = mongoCreatedModified(col);
createdModifiedCollection.insert({a: 1}, function(err, doc) {
if(err) throw err;
createdModifiedCollection.findAnsModify({a: 1}, [], {a: 2},function (err, doc) {
if(err) throw err;
// returns document with createdDate and lastModifiedDate
console.log(doc);
});
})
});
});
FAQs
Mongo collection decorator that add created and modified timestamp on documents
We found that mongo-created-modified 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.