Socket
Book a DemoInstallSign in
Socket

jscommand

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jscommand

Command pattern for JavaScript

npmnpm
Version
1.0.2
Version published
Weekly downloads
33
-10.81%
Maintainers
1
Weekly downloads
 
Created
Source

jscommand

Command pattern for JavaScript

Create a command

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

Conditional command

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

Chain commands

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

Rollback commands

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); 

Logging command

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.

Auto-retry command

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.

Function-based command

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

Nested commands

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

Package last updated on 13 Feb 2019

Did you know?

Socket

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.

Install

Related posts