Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@ifit/mongoose-clean
Advanced tools
Removes private vars, __v, and renames _id to id for mongoose documents
A plugin for Mongoose to normalize JSON output, as well as Object output. Based on mongoose-to-json
See CONTRIBUTING.md
Setup as a global plugin for all Mongoose schema's:
const mongoose = require("mongoose");
const clean = require("@ifit/mongoose-clean");
mongoose.plugin(clean);
Or for a specific (sub) schema:
const mongoose = require("mongoose");
const clean = require("@ifit/mongoose-clean");
const { Schema } = mongoose;
const MySchema = new Schema({});
MySchema.plugin(clean);
This plugin will normalize JSON output for client side applications from:
{
"_id": "400e8324a71d4410b9dc3980b5f8cdea",
"__v": 2,
"name": "Item A"
}
To a cleaner:
{
"id": "400e8324a71d4410b9dc3980b5f8cdea",
"name": "Item A"
}
You can also remove private paths from the JSON:
const mongoose = require("mongoose");
const toJson = require("@ifit/mongoose-clean");
const { Schema } = mongoose;
const schema = new Schema({
email: { type: String },
password: { type: String, private: true }
});
schema.plugin(toJson);
const User = mongoose.model("users", schema);
const user = new User({ email: "test@test.com", password: "test" });
console.log(user.toJSON());
This will output:
{
"id": "400e8324a71d4410b9dc3980b5f8cdea",
"email": "test@test.com"
}
FAQs
Removes private vars, __v, and renames _id to id for mongoose documents
We found that @ifit/mongoose-clean demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 49 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.