0.1.0 • Published 1 year ago

cmdparser v0.1.0

Weekly downloads
1,120
License
-
Repository
github
Last release
1 year ago

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" ]