Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
server.bullish.job({
name: 'add5',
handler: (job) => {
// do job logic here, return a promise!
return Promise.resolve(job.data + 5);
},
config: {
validate: joi.number(),
}
}, next);
bullish.job(options, [callback])
Defines a new job queue.
Has the following parameters:
options
name
– the queue namehandler
– the handler that will be calledconfig
– a optional config object containing:
validate
– a joi schema, used for input validationconcurrency
– the max. concurrency for the handler (on a single process)pre
– Experimental: an array of functions that will be called before the handler.
Have to return Promises or be synchronous.routes
– configure auto generated routes, can be one of
Boolean
: false
– disable auto route generationArray
: ['create', 'status', 'simulate']
– Toggle specific routes to be generatedcallback
– a optional function called, when the queue is ready to be used.server.bullish.job({
name: 'squareAll',
handler: (job) => job.data.map(num => num * num + job.pre[0]),
config: {
concurrency: 5,
pre: [ () => 0 ],
validate: joi.array().items(joi.number()).required(),
}
});
bullish.add(jobName, [data], [options])
Adds a new job to the queue. Analog to bulls queue.add
, but with validation.
Has the following options:
data
– the data passed to the handler in job.data
.options
– all bull
options and an extra validate
option, to toggle validation.
validate
– Boolean
: toggles input validationserver.bullish.add('sum', { a: 5, b: 10 }, { validation: false });
bullish.inject(jobName, [data], [options])
can be used for testing or simulation. Returns a promise.
Has the following parameters:
data
– the data passed to the handler in job.data
.options
– object of options:
pre
– an optional array of precalculated results to use instead of the defined
job pre
middleware.validation
– disables input validation inside the jobbullish.inject(jobName, { name: 'Max', email: 'max@example.com' }, {
pre: [ 5 ],
validation: false,
});
FAQs
A nice bull queue interface for hapi.
We found that bullish 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.