Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
mongoose-hook-createdmodified
Advanced tools
Mongoose plugin, adding `createdAt` and `modifiedAt` timestamp fields to document. `modifiedAt` is changed on any type of update.
Mongoose plugin, adding createdAt
and modifiedAt
timestamp fields to document. modifiedAt
is changed on any type of update.
git clone git@github.com:tarquas/mongoose-hook-createdmodified.git mongoose-hook-createdmodified
{
"mongoose-hook-createdmodified": "0.1.4"
}
Example: enable 'createdAt' and 'modifiedAt' fields on a schema:
var
mongoose = require('mongoose'),
createdModifiedPlugin = require('mongoose-hook-createdmodified'),
PersonSchema;
PersonSchema = {
name: String,
email: String
};
PersonSchema.plugin(createdModifiedPlugin, {mongoose: mongoose});
mongoose.model('Person', PersonSchema);
This plugin must be provided with an exact instance of mongoose
, where the processing models expected to be processed, in opts
parameter.
This plugin updates modification time of the document on its any update operation. It's based on mongoose-hook
plugin, so every time, any of insert
, update
, or findAndModify
database API wrapper is called, the creation/modification time is updated.
FAQs
Mongoose plugin, adding `createdAt` and `modifiedAt` timestamp fields to document. `modifiedAt` is changed on any type of update.
The npm package mongoose-hook-createdmodified receives a total of 654 weekly downloads. As such, mongoose-hook-createdmodified popularity was classified as not popular.
We found that mongoose-hook-createdmodified 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.