UNPKG

mixdown

Version:

Mixdown components are used to create and remix web app and cli services.

13 lines (12 loc) 276 B
var BasePlugin = require('mixdown-app').Plugin; module.exports = BasePlugin.extend({ _namespace_default: 'hello', sayHello: function() { return this._options.hello; }, initialized: false, _setup: function(done) { this.initialized = true; done(); } });