
Research
/Security News
jscrambler npm Package Compromised in Supply Chain Attack
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.
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
The npm package schema-model receives a total of 9 weekly downloads. As such, schema-model popularity was classified as not popular.
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.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.

Research
/Security News
A malicious .NET package is typosquatting the Braintree SDK to steal live payment card data, merchant API keys, and host secrets from production apps.

Security News
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.