
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

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', options);
};
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);
};
Also, provide a helper method on your application to allow plugins to self register:
MyApp.prototype.registerPlugin = function (name, description, options, fn) {
this.dovetail.createPlugin(name, description, options, fn);
};
Now you can drop a javascript file into your plugins folder and it'll be registered:
module.exports = function (app) {
var options = {
events: [ 'app:before:start' ] // list of events this plugin will listen for
};
app.registerPlugin('my-custom-plugin', 'This is an awesome plugin that runs before the application starts.', options, 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();
});
};
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 Thursday, March 6, 2014.
FAQs
Make your application pluggable!
The npm package dovetail receives a total of 0 weekly downloads. As such, dovetail popularity was classified as not popular.
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.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.