
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600Ć Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600Ć faster than humans.
eslisp-chain
Advanced tools
An eslisp macro for chaining method calls on a single object.
The macro is best suited for APIs whose methods return the same object to make it possible to chain sebsequent method calls. eslisp's functional syntax makes such API rather tedious to use.
Consider the following example in JavaScript:
service.method('greet', function (name) {
return 'Hello, ' + (name + '!');
}).listen();
This can be expressed in eslisp with the following code:
((.
((. service method) "greet" (lambda (name)
(return (+ "Hello, " name "!"))))
listen))
As the number of method calls increases, this inside-out functional syntax can
get unwieldy, with multiple nested ((.
invocations.
The eslisp-chain macro makes it possible to write the same code in a sequential manner:
(macro -> (require "eslisp-chain"))
(-> service
(method "greet" (lambda (name)
(return (+ "Hello, " name "!"))))
(listen))
This syntax is convenient for chaining promises:
(macro -> (require "eslisp-chain"))
(-> (read "data.json")
(then (. JSON parse))
(then (lambda (obj)
(return ((. Object keys) obj))))
(catch (. console error)))
ā
read('data.json').then(JSON.parse).then(function (obj) {
return Object.keys(obj);
}).catch(console.error);
It can be used to compose array methods:
(macro -> (require "eslisp-chain"))
(-> Object
(keys data)
(filter (lambda (key)
(return (!== (get key 0) "_"))))
(forEach processPublicMembers))
ā
Object.keys(data).filter(function (key) {
return key[0] !== '_';
}).forEach(processPublicMembers);
The macro offers an alternative even for single method calls where there is no chaining:
(macro -> (require "eslisp-chain"))
(-> app
(get "/" (lambda (req, res)
((. res send) "Hello, world!"))))
(-> app
(listen 3000))
ā
app.get('/', function (req, unquote(res)) {
res.send('Hello, world!');
});
app.listen(3000);
FAQs
eslisp macro for chaining method calls on a single object
The npm package eslisp-chain receives a total of 0 weekly downloads. As such, eslisp-chain popularity was classified as not popular.
We found that eslisp-chain 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600Ć faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.