
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
schema-model
Advanced tools
Javascript model backed by jsonschema validation
var Model = require('schema-model');
var MyModel = Model.define({
schema: {
type: 'object',
properties: {
a: { type: 'string', required: true },
b: { type: 'number' }
}
}
});
var model = new MyModel();
model
.set('a', 'a')
.set('c.d', 1)
.setMany({ a: 'b', b: 'a' });
// check if model is valid
if (model.valid()) {
// do stuff
}
// re-constructing a model
var existing = new MyModel({ a: 'a', b: 'b' });
Returns a model class for creating model instances and validating them
schema: JSON Schema used for validating the model. Schema has been enriched with jsonschema-extra (https://www.npmjs.com/package/jsonschema-extra) to support additional types and attributesdefault: Function to generate the default model, defaults to function() { return {}; }Return the entire model or a single property
// root property
model.get('a');
// nested property
model.get('a.a');
// entire model
model.get();
Set a single or multiple properties. Can chain multiple set commands
model
.set('a', 1)
.set('a.a', 'a')
.set({ b: 2, 'c.d.e': [] });
Returns a boolean to indicate if a model passes the schema
var MyModel = Model.define({
schema: {
type: 'object',
properties: {
a: { type: 'string', required: true },
b: { type: 'number' }
}
}
});
var model = new MyModel();
model
.set('a', 'a')
.set('c.d', 1)
.setMany({ a: 'b', b: 'a' });
// check if model is valid
if (model.valid()) {
// do stuff
} else {
// stores the current state of the model including its validation result
console.error(this.state);
}
When the model instance is JSON.stringified, it returns the raw model. Can also be used as an alternative to .get() to retrieve the entire model as JSON.
var assert = require('assert');
var MyModel = Model.define();
var model = new MyModel({ a: 1, b: { a: 2 } });
assert.deepEqual(
JSON.parse(JSON.stringify(model)),
{ a: 1, b: { a: 2 } }
);
FAQs
Model backed by jsonschema validation
We found that 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.