Coder Social home page Coder Social logo

tunnckocore / dush-better-use Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 506 KB

Adds support for named plugins and better error handling, by overriding the default `.use` method

License: MIT License

JavaScript 100.00%
dush dushplugin minibaseplugin baseplugin use plugins override named-plugins error-handling

dush-better-use's Introduction

dush-better-use npm version github tags mit license

Adds support for named plugins and better error handling, by overriding the default .use method

You might also be interested in dush.

Quality 👌

By using commitizen and conventional commit messages, maintaining meaningful ChangeLog and commit history based on global conventions, following StandardJS code style through ESLint and having always up-to-date dependencies through integrations like GreenKeeper and David-DM service, this package has top quality.

code climate code style commitizen friendly greenkeeper friendly dependencies

Stability 💯

By following Semantic Versioning through standard-version releasing tool, this package is very stable and its tests are passing both on Windows (AppVeyor) and Linux (CircleCI) with results from 100% to 400% test coverage, reported respectively by CodeCov and nyc (istanbul).

following semver semantic releases linux build windows build code coverage nyc coverage

Support 👏

If you have any problems, consider opening an issue, ping me on twitter (@tunnckoCore), join the support chat room or queue a live session on CodeMentor with me. If you don't have any problems, you're using it somewhere or you just enjoy this product, then please consider donating some cash at PayPal, since this is OPEN Open Source project made with love at Sofia, Bulgaria 🇧🇬.

tunnckoCore support code mentor paypal donate NPM monthly downloads npm total downloads

Table of Contents

(TOC generated by verb using markdown-toc)

Install

Install with npm

$ npm install dush-better-use --save

or install using yarn

$ yarn add dush-better-use

Usage

For more use-cases see the tests

const dushBetterUse = require('dush-better-use')

API

Overrides the default dush/minibase/base .use method to support named plugins and to have better error handling. It also adds/registers the minibase-is-registered plugin if not included already, so you will have .isRegistered method too. This plugin emits error event if something fail in plugin, instead of throwing.

Params

  • opts {Object}: no options currently
  • returns {Function}: a plugin function that should be passed to .use method

Example

var dush = require('dush')
var betterUse = require('dush-better-use')

var app = dush()
app.use(betterUse())

Calls fn plugin immediately once, if name is string it registers it as "named" plugin so you can find its name at app.registered cache. It also emits error event if plugin fn throws.

Params

  • name {String|Function}: name of the plugin or fn plugin function
  • fn {Function|Object}: a plugin function, called immedately; or options object
  • options {Object}: direclty passed as 2nd argument to fn
  • returns {Object}: self "app" for chaining

Example

var called = 0

function plugin (app) {
  app.foo = 123
  called++
}

app.use('foobar', plugin)
app.use('foobar', plugin)
app.use('foobar', plugin)

console.log(called) // => 1
console.log(app.foo) // => 123
console.log(app.registered) // => { 'foobar': true }

// if something fails in a plugin
// it emits `error` event
app.once('error', (err) => {
  console.log('ERR!', err.toString()) // => Error: sadly error
})
app.use((app) => {
  throw new Error('sadly error')
})

Related

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Please read the contributing guidelines for advice on opening issues, pull requests, and coding standards.
If you need some help and can spent some cash, feel free to contact me at CodeMentor.io too.

In short: If you want to contribute to that project, please follow these things

  1. Please DO NOT edit README.md, CHANGELOG.md and .verb.md files. See "Building docs" section.
  2. Ensure anything is okey by installing the dependencies and run the tests. See "Running tests" section.
  3. Always use npm run commit to commit changes instead of git commit, because it is interactive and user-friendly. It uses commitizen behind the scenes, which follows Conventional Changelog idealogy.
  4. Do NOT bump the version in package.json. For that we use npm run release, which is standard-version and follows Conventional Changelog idealogy.

Thanks a lot! :)

Building docs

Documentation and that readme is generated using verb-generate-readme, which is a verb generator, so you need to install both of them and then run verb command like that

$ npm install verbose/verb#dev verb-generate-readme --global && verb

Please don't edit the README directly. Any changes to the readme must be made in .verb.md.

Running tests

Clone repository and run the following in that cloned directory

$ npm install && npm test

Author

Charlike Mike Reagent

License

Copyright © 2017, Charlike Mike Reagent. Released under the MIT License.


This file was generated by verb-generate-readme, v0.4.3, on April 03, 2017.
Project scaffolded using charlike cli.

dush-better-use's People

Contributors

greenkeeperio-bot avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

dush-better-use's Issues

Allow passing options as last argument to `.use`

So this options will come as second argument passed to the fn plugin, exactly after the app argument.

app.use('name', (app, opts) => {
  console.log(opts) // => { foo: 123 }
}, { foo: 123 })

app.use((app, opts) => {
  console.log(opts) // => { bar: 555 }
}, { bar: 555 })

These options are not the app.options and they are not merged with it.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.