Skip to content

known-as-dan/command-npm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Command is a simple framework for handling command execution within your node application.

Usage

Recreating the common "echo" command using Command & Typescript:

import { Command, init } from "@known-as-dan/command";

new Command("echo", "<message>", "Send a message.", (args: Array<string>) => {
	const message = args.join();
	console.log(message);
});

init();

About

Command is a simple framework for handling command execution within your node application.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published