Skip to content

joeferner/node-cmdparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cmdparser

Command parser with support for completers.

Made specifically to parse redis command syntax but can be used for other purposes as well.

Install

$ npm install cmdparser

Example

var cmdparser = new CmdParser([
  "del <key> [key ...]",
  "dump <key>",
  "exists <key>"
], {
  key: function (partial) {
    return ["1111", "1112", "1113"];
  }
});
var results = cmdparser.completer("dump 111");
// results = [ ["1111", "1112", "1113"], "111" ]

About

Command parser with support for completers.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •