native-promise-deferred

1.0.1 • Public • Published

native-promise-deferred npm version github tags mit license

A deferred Promise, using native-or-another behind and so it work on Node.js v0.10 too!

You might also be interested in native-promise.

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 ❤️ 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 native-promise-deferred --save

or install using yarn

$ yarn add native-promise-deferred

Usage

For more use-cases see the tests

const Promise = require('native-promise-deferred')
 
const promise = new Promise()
promise.then((res) => console.log(res))
promise.resolve(123) // same as Promise.resolve(123)

API

Deferred

Acts and works like a Promise constructor, but instead of accepting resolver function like function (resolve, reject) {} it accepts an options optional object that is allows you to pass custom Promise constructor for options.Promise when there's no support for native promise in the used environment.

Params

  • options {Object}: directly passed to native-or-another's "register"
  • options.global {Boolean}: pass false to disable registering it as global.Promise
  • returns {Promise}: a standard Promise object with .resolve and .reject methods

Example

const Deferred = require('native-promise-deferred')
 
const promise = new Deferred()
 
promise.then((res) => {
  console.log('result:', res) // => 123
})
promise.resolve(123)
 
// or passing custom promise
// for nodejs < v0.12 where no native promise support
 
const Bluebird = require('bluebird')
const customPromise = new Deferred({ Promise: Bluebird })
 
customPromise.catch((er) => console.log('ERR!', er))
// => ERR! Error: foo bar
 
customPromise.reject(new Error('foo bar'))

Related

  • dush-no-chaining: A plugin that removes the emitter methods chaining support for dush, base, minibase or anything based on them | 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
  • gibon: Functional client-side router in ~570 bytes, built on HTML5 History API | homepage
  • gruu: Modern, small and powerful testing with TAP output and support for async/await, promises, callbacks, streams and observables, built on always-done. | homepage
  • minibase: Minimalist alternative for Base. Build complex APIs with small units called plugins. Works well with most of the already existing… more | homepage
  • native-or-another: Guaranteed way for getting a Promise. Always native Promise if available, otherwise looks for common promise libraries and loads which… more | homepage
  • native-promise: Get native Promise or falsey value if not available. | 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.

Dependencies (2)

Dev Dependencies (9)

Package Sidebar

Install

npm i native-promise-deferred

Weekly Downloads

9

Version

1.0.1

License

MIT

Last publish

Collaborators

  • vanchoy
  • tunnckocore