@jodu555/commandmanager

1.5.3 • Public • Published

Node-CommandManager

A Simple Command Manager API in NodeJS! In which you can define Commands to do certain things! Then the end user can type these into the console to trigger certain code

Features

  • Handles all registered Commands
  • Handles Async Code execution in commands
  • Automatically implements a help command
  • Nice Developer Experience

Usage

Create a command manager

const { CommandManager, Command } = require('@jodu555/commandmanager');
//                                              Pass here the standard pipe you want to use
const commandManager = CommandManager.createCommandManager(process.stdin, process.stdout);

Create Commands

commandManager.registerCommand(
	new Command(
		'addUser', // The Command
		'addUser <Name> <Street> [City]', // A Usage Info with arguments
		'Adds a user', // A Description what the command does
		(command, [...args], scope) => {
			// command: The initial command: addUser
			// args: The Arguments including the command at index 0
			// scope: The Scope this command was run can either be user or system

			//Do your code here

			//Return whatever the command should output
			//Can be an Array
			return ['User Added:', '', 'Name: NAME'];
			//Or just a String
			return 'User Added Successfully';
		}
	)
);

Alias Support

commandManager.registerCommand(
	new Command(
		['here', 'you', 'can', 'put', 'all', 'the', 'aliases'],
		'Usage',
		'Description',
		(command, [...args], scope) => {}
	)
);

Unregister Commands

commandManager.unregisterCommand('clear'); // Here you can put the command name or any alias

Work with the commandManager in other classes | PUT this before you acces the commandManager anywhere

const { CommandManager, Command } = require('@jodu555/commandmanager');

const commandManager = CommandManager.getCommandManager();
commandManager. //some other function like registerCommand

Call A specific command with code

commandManager.callCommand('command argu ments', 'YOUR scope! Default: System');

More To Know

//If you dont want the two default commands: "help" & "clear" then you can call:

commandManager.disableDefaultCommands();

//If you now decide you want them back use:

commandManager.initializeDefaultCommands();

Projects using this API

Todo

  • [x] Document all the system with jsdoc so the usage gets nicer
  • [x] Implement so you can call a command with code
    • [x] Implement the System / Code scope
  • [x] Implement a Command Alias
    • [x] Make the one alias to multiple aliases
    • [x] Implement the alias usage into the Readme
  • [ ] Implement a shutdown hook to maybe cleanup some commands

Package Sidebar

Install

npm i @jodu555/commandmanager

Weekly Downloads

3

Version

1.5.3

License

ISC

Unpacked Size

13.8 kB

Total Files

8

Last publish

Collaborators

  • jodu555