
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
model-golem
Advanced tools
A model factory JS library to generate data mocks
npm install --save-dev model-golem
Load the Factory:
// NodeJS / CommonJS Modules
var Factory = require('model-golem');
// ES2015 Modules
import Factory from 'model-golem';
Define a model:
var Person = {
id: function() {
// this.sequence is autoincremented on every creation step, starts from 0
return this.sequence;
},
// Define the attributes giving their default values
name: '',
charisma: 42,
// Reuse attributes
username: function() {
return this.item.name.toLowerCase().replace(/ /g, '');
}
};
Instantiate the Factory with your model:
var peopleFactory = new Factory(Person);
Create your mocks!
var person = peopleFactory({
name: 'Leo Balter',
});
/*
person === {
id: 0,
name: 'Leo Balter',
charisma: 42,
username: 'leobalter'
}
*/
Create your mocks from arrays!
var people = peopleFactory([
{
name: 'Green Avocados',
// replace default values!
charisma: 0
},
{
name: 'Spicy Mustard',
id: 100,
charisma: 37,
username: 'mryellow'
}
]);
/*
people === [
{
id: 2,
name: 'Green Avocados',
charisma: 0,
username: 'greenavocados'
},
{
id: 100,
name: 'Spicy Mustard',
charisma: 37,
username: 'mryellow'
}
]
*/
Get the stored data!
var stored = peopleFactory.store;
/*
stored === [
{
id: 1,
name: 'Leo Balter',
charisma: 42,
username: 'leobalter'
},
{
id: 2,
name: 'Green Avocados',
charisma: 0,
username: 'greenavocados'
},
{
id: 100,
name: 'Spicy Mustard',
charisma: 37,
username: 'mryellow'
}
]
*/
FAQs
A model factory JS library to generate data mocks
We found that model-golem 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 researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.