Coder Social home page Coder Social logo

tunnckocore / dush-options Goto Github PK

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

Adds `.option`, `.enable` and `.disable` methods to your dush, Base or MiniBase application.

License: MIT License

JavaScript 100.00%
dushplugin dush minibaseplugin baseplugin options enable disable

dush-options's Introduction

dush-options npm version github tags mit license

Adds .option, .enable and .disable methods to your dush application

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-options --save

or install using yarn

$ yarn add dush-options

Usage

For more use-cases see the tests

const dushOptions = require('dush-options')

API

A plugin for dush/minibase/base that adds .option, .enable and .disable methods to your app. You can pass options to be merged with app.options

Params

  • options {Object}: optional, initial options to set to app.options property
  • returns {Function}: a plugin function, pass it to .use method of dush/minibase/base

Example

var dush = require('dush')
var options = require('dush-options')

var app = dush()

// some initial options
var opts = { foo: 'bar' }

app.use(options(opts))

console.log(app.options) // => { foo: 'bar' }

console.log(app.option()) // => { foo: 'bar' }
console.log(app.option) // => function

console.log(app.enable) // => function
console.log(app.disable) // => function

Set or get an option(s). Support dot notation syntax too. If there are no arguments it returns app.options. If key is string and no value argument, it gets that property from the app.options object - using get-value, so app.option('foo.bar.qux'). If key is object it is merged with app.options using mixin-deep. If both key and value is given then it sets value to key property, using set-value library.

Params

  • key {String|Object}: path to some option property, e.g. a.b.c
  • value {any}: if key is string, any value to set to key property
  • returns {Object}: clone of the modified app.options object, or some key value

Example

var app = dush()
app.use(options({ initial: 'props' }))

console.log(app.options) // => { initial: 'props' }
console.log(app.option()) // => { initial: 'props' }

app.option({ foo: 'bar' })
console.log(app.options)
// => { initial: 'props', foo: 'bar' }

app.option('qux', 123)
console.log(app.options)
// => { initial: 'props', foo: 'bar', qux: 123 }

app.option('aa.bb.cc', 'dd')
console.log(app.options)
// => {
//  initial: 'props',
//  foo: 'bar',
//  qux: 123,
//  aa: { bb: { cc: 'dd' } }
// }

console.log(app.option('aa.bb')) // => { cc: 'dd' }
console.log(app.option('aa')) // => { bb: { cc: 'dd' }
console.log(app.option('foo')) // => 'bar'

Enables a key to have true value. It is simply just a shortcut for app.option('foo', true).

Params

  • key {String}: a path to property to enable
  • returns {Object}: always self for chaining

Example

app.use(options())
console.log(app.options) // => {}

app.enable('foo')
console.log(app.options) // => { foo: true }

app.enable('qux.baz')
console.log(app.options) // => { foo: true, qux: { baz: true } }

Disable a key to have false value. It is simply just a shortcut for app.option('zzz', false).

Params

  • key {String}: a path to property to disable
  • returns {Object}: always self for chaining

Example

app.use(options())
console.log(app.options) // => {}

app.enable('foo')
console.log(app.options) // => { foo: true }

app.disable('foo')
console.log(app.options) // => { foo: false }

app.enable('qux.baz')
console.log(app.options.qux) // => { baz: true }

app.disable('qux.baz')
console.log(app.options.qux) // => { baz: false }

Related

  • base-options: Adds a few options methods to base-methods, like option, enable and disable. See the readme for the full API. | homepage
  • base-plugins: Upgrade's plugin support in base applications to allow plugins to be called any time after init. | homepage
  • base: Framework for rapidly creating high quality node.js applications, using plugins like building blocks | homepage
  • dush-no-chaining: A plugin that removes the emitter methods chaining support for dush, base, minibase or anything based on them | homepage
  • dush-promise: Plugin for dush that makes it a Deferred promise and adds .resolve, .reject, .than and .catch methods for more better… more | homepage
  • dush-router: A simple regex-based router for dush, base, minibase and anything based on them. Works on Browser and Node.js | homepage
  • dush-tap-report: A simple TAP report producer based on event system. A plugin for dush event emitter or anything based on it | homepage
  • dush: Microscopic & functional event emitter in ~260 bytes, extensible through plugins. | homepage
  • minibase-create-plugin: Utility for minibase and base that helps you create plugins | homepage
  • minibase-is-registered: Plugin for minibase and base, that adds isRegistered method to your application to detect if plugin is already registered and… more | homepage
  • minibase: Minimalist alternative for Base. Build complex APIs with small units called plugins. Works well with most of the already existing… more | homepage

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 02, 2017.
Project scaffolded using charlike cli.

dush-options's People

Contributors

greenkeeper[bot] avatar tunnckocore avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

dush-options's Issues

An in-range update of dush is breaking the build 🚨

Version 3.0.5 of dush just got published.

Branch Build failing 🚨
Dependency dush
Current Version 3.0.4
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As dush is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • ❌ ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 8 commits.

  • 7c403dd chore(release): 3.0.5
  • c7162ce fix(update): add eslintrc and format the codebase
  • f3f75a8 chore(package): update standard to version 10.0.1
  • 39140c7 Update rollup-plugin-uglify to version 2.0.1 πŸš€ (#16)
  • eae6639 Merge branch 'master' into greenkeeper-rollup-plugin-uglify-2.0.1
  • ba113a8 Merge pull request #14 from tunnckoCore/greenkeeper-standard-10.0.2
  • 4d8869c chore(package): update rollup-plugin-uglify to version 2.0.1
  • 74f9cac chore(package): update standard to version 10.0.2

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of dush is breaking the build 🚨

Version 3.0.3 of dush just got published.

Branch Build failing 🚨
Dependency dush
Current Version 3.0.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As dush is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ


Status Details
  • βœ… ci/circleci Your tests passed on CircleCI! Details

  • ❌ continuous-integration/appveyor/branch AppVeyor build failed Details

Commits

The new version differs by 2 commits .

  • 81d4018 chore(release): 3.0.3
  • c6972dd fix(readme): update plugins list and github tag badge link

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of standard-version is breaking the build 🚨

Version 4.2.0 of standard-version just got published.

Branch Build failing 🚨
Dependency standard-version
Current Version 4.1.0
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As standard-version is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ ci/circleci Your tests failed on CircleCI Details
  • ❌ continuous-integration/appveyor/branch AppVeyor build failed Details

Commits

The new version differs by 2 commits.

  • 2790e08 chore(release): 4.2.0
  • bc0fc53 feat: add support for package-lock.json (#190)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

emit `option`, `enable` and `disable` events

    app.option = function option (key, value) {
      if (!arguments.length) {
        app.emit('option', app.options)
        // option:getAll app.options
        return app.options
      }
      if (arguments.length === 1 && typeof key === 'string') {
        app.emit('option', app.options, key)
        // option:get key
        return get(app.options, key)
      }
      if (isObject(key)) {
        app.emit('option', app.options, key)
        // option:setAll key
        app.options = merge({}, app.options, key)
      } else {
        app.emit('option', app.options, key, value)
        // option:set key, value
        set(app.options, key, value)
      }
      return app.options
    }

and probably option:getAll, option:get, option:setAll and option:set?

An in-range update of nyc is breaking the build 🚨

Version 11.0.2 of nyc just got published.

Branch Build failing 🚨
Dependency nyc
Current Version 11.0.1
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As nyc is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • ❌ ci/circleci Your tests failed on CircleCI Details

Commits

The new version differs by 2 commits.

  • e4eff12 chore(release): 11.0.2
  • 0c2ef43 chore: upgrade to newer version of spawn-wrap (#592)

See the full diff

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of dush-methods is breaking the build 🚨

Version 1.0.3 of dush-methods just got published.

Branch Build failing 🚨
Dependency dush-methods
Current Version 1.0.2
Type devDependency

This version is covered by your current version range and after updating it in your project the build failed.

As dush-methods is β€œonly” a devDependency of this project it might not break production or downstream projects, but β€œonly” your build or test tools – preventing new deploys or publishes.

I recommend you give this issue a high priority. I’m sure you can resolve this πŸ’ͺ


Status Details
  • βœ… ci/circleci Your tests passed on CircleCI! Details

  • ❌ continuous-integration/appveyor/branch AppVeyor build failed Details

Commits

The new version differs by 2 commits .

  • cf99e51 chore(release): 1.0.3
  • cf61e38 fix(readme): fix link of github tag badge

See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

An in-range update of isobject is breaking the build 🚨

Version 3.0.1 of isobject just got published.

Branch Build failing 🚨
Dependency isobject
Current Version 3.0.0
Type dependency

This version is covered by your current version range and after updating it in your project the build failed.

isobject is a direct dependency of this project this is very likely breaking your project right now. If other packages depend on you it’s very likely also breaking them.
I recommend you give this issue a very high priority. I’m sure you can resolve this πŸ’ͺ

Status Details
  • ❌ continuous-integration/appveyor/branch Waiting for AppVeyor build to complete Details
  • ❌ ci/circleci Your tests failed on CircleCI Details

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

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.