
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
mongoose-schema-model
Advanced tools
Validation and formatting, converting MongooseDB schema definitions to be used in any environment
Small model definitions (MongooseDB style) for composable use in other environments.
Currently only in npm as commonjs.
npm install mongoose-schema-model
Using a Mongoose Schema definition, apply getter and setter transformations and validation.
// Declare a schema definition
var Model = require("mongoose-schema-model");
function numberCast (x) { return ~~x; }
function split (x) { return x.split(', '); }
var definitions = {
year: { type: Number, min: 1900, max: 2014, set: numberCast },
items: { type: [String], lowercase: true, get: split },
};
var model = Model(definitions);
// `get` applies the `get` transformation
model.get("items", ["hello", "world"]); // "hello, world"
// `set` applies all implicit and `set` transformations, as well as subsequently validating
// the model, post-transform.
var response = model.set("items", ["HELLO", "WORLD"]);
response.value; // `["hello", "world"]`, the implicit `lowercase` transform was applied to each element
response.error; // null
response = model.set("year", "2000");
response.value; // `2000`, transforms applied via `set`
response.error ; // null
response = model.set("year", "1550");
response.value; // `2000`, transforms applied, via `set`
response.error; // "Path `year` (1550) is less than the minimum allowed value (1900)."
NumberString[Number][String]MIT License
FAQs
Validation and formatting, converting MongooseDB schema definitions to be used in any environment
We found that mongoose-schema-model 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.