Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Hostess is a nice girl that will run your async code based on dependencies.
Calling hostess()
returns a method that you can call repeatedly.
You pass in a name, an optional list of dependencies, and a callback.
The callback will not be called until it's dependcies have been met.
var hostess = require('hostess')
, host = hostess()
host('first', function() {
console.log('first');
});
host('second', ['first'], function() {
console.log('first');
});
To use hostess asyncronously, just ask nicely for a callback, and she won't run any dependencies until you call it.
var hostess = require('hostess')
, host = hostess()
host('first', function(next) {
setTimeout(function() {
console.log('first');
next();
}, 10);
});
host('second', ['first'], function() {
console.log('first');
});
There are two special names you can give to hostess, 'error'
, and
'done'
, which will act as event handlers and not dependencies.
var hostess = require('hostess')
, host = hostess()
// if you don't set and error handler, then
// errors will be uncaught exceptions.
host('error', function(err) {
console.log('you got an error: ' + err.message);
});
host('bad', function() {
throw new Error('oh noes');
});
host('bad', function(next) {
next(new Error('oh noes'));
});
var hostess = require('hostess')
, host = hostess()
host('no deps', function() {
// done will be fired after this
setTimeout(next, 100);
});
host('cookies', ['milk'], function() {
// done will be fired after this
});
host('milk', function(next) {
// won't fire done
setTimeout(next, 100);
});
host('done', function() {
// will be called when there is nothing in the queue
});
var hostess = require('hostess')
, host = hostess()
host('set', 'debug', true);
host('set', 'timeout', 1000); // defaults to 500ms
host('dep', function(next) {
setTimeout(next, 500);
});
host('buggy', [ 'dep' ], function(next) {
// forgot to call next();
});
/* Outputs:
calling dep
calling buggy
buggy timed out
*/
FAQs
async by depencency
The npm package hostess receives a total of 2 weekly downloads. As such, hostess popularity was classified as not popular.
We found that hostess demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.