
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
@monstermakes/larry-executioner
Advanced tools
Larry The ExecutionerThis project aims at creating a nodejs libray that can execute arbitrary functions/methods as a set of instructions for automating or testing purposes.
let p = new Parent();
let instructionSet = {
commands: [
{
id: 'initial',
classInstance: p,
method: 'method',
args: [1,2,3]
},
{
id: 'second',
classInstance: p,
method: 'method',
args: [
'$cmd:0->request[2]',
2,
'$cmd:0->request[0]'
]
},
]
};
let execution = new Execution(instructionSet);
return execution.execute()
.then((executionDetails)=>{
executionDetails[0].request.should.eql([1,2,3]);
executionDetails[1].request.should.eql([3,2,1]);
});
This is an example of using the Execution class directly. It demonstrates setting up 2 commands to run seuentially where the request arguments being passed into the second command are based on the first.
These request arguments can be any javascript value however if they are a string that matches the lookup selector format $command:<cmdId>-><dot selector> they will be replaced with their "looked up" value. The values are looked up against previously executed command. Each command has a unique cmdId if supplied or are identified by their index in the initial instructionSet. When a command is executed an “Execution Details” object is created that has a bunch of properties in it like request,response, failure etc… The dot selector (a lodash style selctor obj.property[1]) is then used against the Execution Details object to pull the appropriate value.
So think of the $cmd: as a token to tell the executioner to lookup a cmd value, followed by a way to uniquely id the command (id or index). Everything to the right of the -> is a dot selector to lookup your value in that commands Execution Details object.
Here are a few more examples of request arguments:
$cmd:0->request[0]',
'$cmd:initial->request[0]',
'$cmd:0->request[2].property',
'$cmd:0->request[3][1]',
'$cmd:0->response.someProp',
'$cmd:0->failure.message'
FAQs
A library to automate the execution of javascript calls.
We found that @monstermakes/larry-executioner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.