
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
Command pattern for JavaScript
To create a command, create a class that inherits from Command.
class Add extends Command
{
constructor(private a:number)
{
super();
}
action(data:any): any
{
return data + this.a;
}
}
let command = new Add(3);
await command.execute(2); //Return 5
A command can be executed conditionally by using IfCommand.
await new IfCommand(false, new Add(2)).execute(1); // Returns undefined
await new IfCommand(true, new Add(2)).execute(1); // Returns 3
Commands can be chained and executed in as a single unit by using MacroCommand.
let commands = new MacroCommand();
commands.add(new Add(3));
commands.add(new Add(4));
commands.add(new Add(5));
await commands.execute(0); //Returns 12
A command can be rolled back if it inherits from RevertableCommand.
class Add extends RevertableCommand
{
constructor(private a:number)
{
super();
}
action(data:any): any
{
if(data > 2) throw new Error('Overflow!')
return data + this.a;
}
revert(data:any): any
{
console.log('Rollback')
}
}
let commands = new RevertableMacroCommand();
commands.add(new Add(1));
commands.add(new Add(1));
commands.add(new Add(1));
commands.add(new Add(1));
await commands.execute(0);
A command execution can be logged by wrapping the command with TraceableCommand
new TraceableCommand(new Add(3)).execute(1); //Returns 4 and execution information is logged to console.
A command can be retried if an expected error occurs if the command is wrapped with RetryableCommand.
new AutoRetryCommand(new Add(3), Error, 3).execute(0); //The command Add() will be executed. If an error of type `Error` occurs, Add() will be re-executed 2 more times.
For simplicity, AnonymousCommand can be used to wrap a function so that a function can act as a command.
let command = new AnonymousCommand((a)=>a+1);
await command.execute(2); //Returns 3
Commands can be chained to perform complex operations.
let commands = new MacroCommand();
commands.add(new IfCommand(new AnonymousCommand((a)=>a+1 > 2), new Add(1));
commands.add(new AutoRetryCommand(new Add(2)));
new TraceableCommand(commands).execute(0);
FAQs
Command pattern for JavaScript
The npm package jscommand receives a total of 28 weekly downloads. As such, jscommand popularity was classified as not popular.
We found that jscommand 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.