DSH - pronounced dash - is a full featured shell written in JavaScript, which gives you endless possibilities of transforming your app into a shell application. It handles the whole user interaction and you can focus on working with the requested command with your parser - a more configurable "readline"-module if you will.
The terminal window shown above can be implemented with the following snippet:
var shell = require('dsh');
// Add event listener for an command executed
shell.on('exec', function(cmd) {
console.log('Command:', cmd);
});
// Say something
shell.on('open', function() {
this.write("Welcome to DSH\n");
});
shell.on('exit', function() {
this.write("See you...\n");
});
// Set some options
shell.setOptions({
ps: '$ ',
history: '/home/.dsh_history'
});
// Start the shell
shell.open();
- Configurable History
- Asynchronous execution
- No pre-set parser, full control of the input
- Small codebase, easy extensible
Installing DSH is as easy as cloning this repo or use the following command:
npm install --save dsh
Function to open the actual shell
Function to exit the program
Sets the value of an option listed below. key
is either an object of multiple option key-value pairs or one value is presented as a key value parameter.
Sets the callback fn
on event ev
(see below for a full list of available events)
An array of commands, that were entered in the past
A boolean flag if a long running task is still allowed to run. See gps example in the examples folder.
The event is triggered when the shell is opened. This is the right place for your message of the day.
The event is triggered before the program is getting terminated.
The event is triggered for every command submitted. The callback has one parameter, the command itself.
The event is triggered when the user hits ctrl+ (key is any a-z without c for the moment). The callback has one parameter, the key.
Boolean if the exec event should be asynchronous. If it is, the callback has a second argument, the done()
callback. See the MySQL client in the examples folder.
The prompt string, which gets prepended of each line. Default is '>> '
Boolean to notify the user of small interaction mistakes by playing the typical beep sound. Default is true.
Boolean if the shell should exit when ctrl-c is invoked. Default is true. Alternative would be to call exit()
on your own.
If exitOnCtrlC
is false, then ctrl-c can be used to abort the actual writing of a command.
The file path to the history file. Default is null, which means no history file is written
The maximum number of lines getting written back to the history file. Default is null, which means everything is written
Boolean to ignore a command of being written to history twice, if the previous command was the same. Default is false, so every command is written to history
Copyright (c) 2016, Robert Eisele Dual licensed under the MIT or GPL Version 2 licenses.