
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
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 38 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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.