@mediarithmics/plugins-nodejs-sdk
Version:
This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate
16 lines (15 loc) • 433 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class TestingPluginRunner {
constructor(plugin, transport) {
this.plugin = plugin;
if (transport) {
this.plugin._transport = transport;
}
}
// Start a server serving the plugin app
// A port can be provided to run the server on it
start() {
}
}
exports.TestingPluginRunner = TestingPluginRunner;