0.0.1 • Published 9 years ago

jp-gcli v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

A Jetpack-compatible module for GCLI commands.

Currently I have no idea how this works. Maybe something like this:

var Gcli = require("gcli");
Gcli.addCommand({
  name: 'rdp-monitor',
  description: 'Commands to control the RDP Monitor DevTools'
});
Gcli.addCommand({
  name: "rdp-monitor open",
  description: "Open the RDP Monitor DevTools Tab",
  exec: function(args, context) {
    // TODO: open devtools tab
  }
});