Socket
Socket
Sign inDemoInstall

use

Package Overview
Dependencies
8
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    use

Easily add plugin support to your node.js application.


Version published
Weekly downloads
11M
decreased by-10.47%
Maintainers
2
Install size
101 kB
Created
Weekly downloads
 

Readme

Source

use NPM version

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.

FAQs

Last updated on 10 Nov 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc