Implements Command Pattern using ESNext decorators.
npm install https://github.com/emotz/command-decorator
Tested on Windows, but should work on Linux/MacOS as well.
import { Command, execute } from 'command-decorator';
class TestCommand extends Command {
@execute
public async execute() {
return 10;
}
}
const cmd = new TestCommand();
cmd.execute();