StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/common-config/node_modules/use/README.md

2.6 KiB

use NPM version Build Status

Easily add plugin support to your node.js application.

A different take on plugin handling! This is not a middleware system, if you need something that handles async middleware, ware is great for that.

Install

Install with npm

$ npm i use --save

Usage

var use = require('use');

See the examples folder for usage examples.

API

.use

Define a plugin function to be passed to use. The only parameter exposed to the plugin is app, the object or function. passed to use(app). app is also exposed as this in plugins.

Additionally, if a plugin returns a function, the function will be pushed onto the fns array, allowing the plugin to be called at a later point by the run method.

Params

  • fn {Function}: plugin function to call

Example

var use = require('use');

// define a plugin
function foo(app) {
  // do stuff
}

var app = function(){};
use(app);

// register plugins
app.use(foo);
app.use(bar);
app.use(baz);

.run

Run all plugins on fns. Any plugin that returns a function when called by use is pushed onto the fns array.

Params

  • value {Object}: Object to be modified by plugins.
  • returns {Object}: Returns the object passed to run

Example

var config = {};
app.run(config);

Similar projects

  • base-methods: Starter for creating a node.js application with a handful of common methods, like set, get,… more | homepage
  • ware: Easily create your own middleware layer. | homepage

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on November 10, 2015.