
Company News
Socket Joins the OpenJS Foundation
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Make your application pluggable!
To install the module, run the following in the command line:
npm i dovetail --save
Use within your application with the following lines of JavaScript:
var events = require('events');
// require the main Dovetail class
var Dovetail = require('dovetail');
// create an "application" to be pluggable
var MyApp = function (options) {
// make it an EventEmitter
events.EventEmitter.call(this);
// create a new instance of Dovetail
// passing in your application
this.dovetail = new Dovetail(this);
// automatically load plugins
this.dovetail.resolve('/path/to/plugins/*.js');
};
require('util').inherits(MyApp, events.EventEmitter);
Nothing else is required, but the plugins won't run until you trigger them
MyApp.prototype.trigger = function (event, params, done) {
this.dovetail.runEvent(event, params, done);
};
Now you can drop a javascript file into your plugins folder and it'll be registered:
module.exports = function (app) {
// create a plugin function that takes a params object and done callback function
var plugin = function (params, done) {
console.log('This is my custom plugin!');
console.log('event', params.event);
// add something to the params to be passed back to your app
params.startTime = new Date();
// let the app know that the plugin is finished
done();
};
plugin.options = {
// name your plugin
name: 'my-custom-plugin',
// describe your plugin
description: 'This is an awesome plugin that runs before the application starts.',
// list of events your plugin will listen for
events: [ 'app:before:start' ]
};
// Return an object containing your plugin functions
// These will get registered with the app
var rtn = {};
rtn[plugin.options.name] = plugin;
return rtn;
};
Create a function for your app that will trigger some events:
MyApp.prototype.start = function () {
var self = this;
// set up some paramets to keep track of state
self.params = {};
// trigger that the app will be starting
self.trigger('app:before:start', self.params, function(err) {
if (err) {
throw new Error(err);
}
console.log('The app has started');
// do some work
// trigger that the app is going to end
self.trigger('app:before:end', self.params, function (err) {
if (err) {
throw new Error(err);
}
console.log('The app has ended');
});
});
}
Find a bug? Have a feature request? Please create an Issue.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt, and build the documentation with grunt-readme.
Pull requests are also encouraged, and if you find this project useful please consider "starring" it to show your support! Thanks!
Jon Schlinkert
Brian Woodward
Copyright (c) 2014 undefined, contributors. Released under the license
This file was generated by grunt-readme on Friday, March 7, 2014.
FAQs
Make your application pluggable!
We found that dovetail demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket is proud to join the OpenJS Foundation as a Silver Member, deepening our commitment to the long-term health and security of the JavaScript ecosystem.

Security News
npm now links to Socket's security analysis on every package page. Here's what you'll find when you click through.

Security News
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.