Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Build chainable fluent interfaces the easy way... with a freakin' chainsaw!
The chainsaw npm package provides a way to build chainable and interruptible APIs that can be used to create fluent interfaces in JavaScript. It allows developers to create a sequence of actions that can be paused, resumed, and controlled in a flexible manner.
Chainable API creation
This code sample demonstrates how to create a simple chainable API using chainsaw. The 'do' method is defined within the Chainsaw constructor, and it uses 'saw.next()' to proceed to the next link in the chain after a timeout.
var Chainsaw = require('chainsaw');
var saw = Chainsaw(function (saw) {
this.do = function (cb) {
setTimeout(function () {
cb(1);
saw.next();
}, 1000);
};
});
saw.do(function (n) {
console.log(n);
}).do(function (n) {
console.log(n + 1);
});
Interruptible execution
This code sample shows how to create an interruptible chain where the 'interrupt' method stops the execution of the chain. The 'wait' method sets a timeout before proceeding to the next action.
var Chainsaw = require('chainsaw');
var saw = Chainsaw(function (saw) {
this.wait = function (delay) {
setTimeout(saw.next, delay);
return this;
};
this.interrupt = function () {
saw.stop();
};
});
saw.wait(1000).interrupt().wait(1000);
The 'async' package provides a collection of functions for working with asynchronous JavaScript. While it does not focus on chainable APIs, it offers similar control flow features such as series, parallel, and waterfall, which can be used to manage asynchronous operations.
The 'q' package is a promise library that allows chaining and composition of asynchronous functions using promises. It differs from chainsaw in that it uses promises to manage asynchronous flow instead of a custom chaining mechanism.
Similar to 'q', 'bluebird' is a promise library that provides extensive features for controlling asynchronous code with promises. It offers performance optimizations and additional utilities compared to 'q', but like 'q', it uses promises rather than a chainsaw-like chaining interface.
Build chainable fluent interfaces the easy way in node.js.
With this meta-module you can write modules with chainable interfaces. Chainsaw takes care of all of the boring details and makes nested flow control super simple too.
Just call Chainsaw
with a constructor function like in the examples below.
In your methods, just do saw.next()
to move along to the next event and
saw.nest()
to create a nested chain.
This silly example adds values with a chainsaw.
var Chainsaw = require('chainsaw');
function AddDo (sum) {
return Chainsaw(function (saw) {
this.add = function (n) {
sum += n;
saw.next();
};
this.do = function (cb) {
saw.nest(cb, sum);
};
});
}
AddDo(0)
.add(5)
.add(10)
.do(function (sum) {
if (sum > 12) this.add(-10);
})
.do(function (sum) {
console.log('Sum: ' + sum);
})
;
Output: Sum: 5
This example provides a wrapper on top of stdin with the help of node-lazy for line-processing.
var Chainsaw = require('chainsaw');
var Lazy = require('lazy');
module.exports = Prompt;
function Prompt (stream) {
var waiting = [];
var lines = [];
var lazy = Lazy(stream).lines.map(String)
.forEach(function (line) {
if (waiting.length) {
var w = waiting.shift();
w(line);
}
else lines.push(line);
})
;
var vars = {};
return Chainsaw(function (saw) {
this.getline = function (f) {
var g = function (line) {
saw.nest(f, line, vars);
};
if (lines.length) g(lines.shift());
else waiting.push(g);
};
this.do = function (cb) {
saw.nest(cb, vars);
};
});
}
And now for the new Prompt() module in action:
var util = require('util');
var stdin = process.openStdin();
Prompt(stdin)
.do(function () {
util.print('x = ');
})
.getline(function (line, vars) {
vars.x = parseInt(line, 10);
})
.do(function () {
util.print('y = ');
})
.getline(function (line, vars) {
vars.y = parseInt(line, 10);
})
.do(function (vars) {
if (vars.x + vars.y < 10) {
util.print('z = ');
this.getline(function (line) {
vars.z = parseInt(line, 10);
})
}
else {
vars.z = 0;
}
})
.do(function (vars) {
console.log('x + y + z = ' + (vars.x + vars.y + vars.z));
process.exit();
})
;
With npm, just do: npm install chainsaw
or clone this project on github:
git clone http://github.com/substack/node-chainsaw.git
To run the tests with expresso, just do:
expresso
node-chainsaw
supports two different modes. In full mode, every
action is recorded, which allows you to replay actions using the
jump()
, trap()
and down()
methods.
However, if your chainsaws are long-lived, recording every action can consume a tremendous amount of memory, so we also offer a "light" mode where actions are not recorded and the aforementioned methods are disabled.
To enable light mode simply use Chainsaw.light()
to construct your
saw, instead of Chainsaw()
.
FAQs
Build chainable fluent interfaces the easy way... with a freakin' chainsaw!
The npm package chainsaw receives a total of 1,521,757 weekly downloads. As such, chainsaw popularity was classified as popular.
We found that chainsaw demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.