jp-gcli

Jetpack module for creating gcli commands.

Usage no npm install needed!

<script type="module">
  import jpGcli from 'https://cdn.skypack.dev/jp-gcli';
</script>

README

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
  }
});