Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

native-or-another

tunnckocore20.1kMIT5.0.1

Guaranteed way for getting a Promise. Always native Promise if available, otherwise looks for common promise libraries and loads which is installed. Allows registering custom Promise implementation in node < 0.12 versions

any, any-promise, autoload, bluebird, common, common-promise, ecma, ecmascript, es2015, es6, es2017, load, load-promise, loading, native, native-promise, promise, promises, register, register-promise, registration, specification

readme

native-or-another NPM version mit license NPM monthly downloads npm total downloads

Guaranteed way for getting a Promise. Always native Promise if available, otherwise looks for common promise libraries and loads which is installed. Allows registering custom Promise implementation in node < 0.12 versions

code climate code style linux build windows build code coverage dependency status paypal donate

Pretty much like any-promise, but works a bit different & better.

Let your library support any ES 2015 (ES6) compatible Promise and leave the choice to application authors. The application can optionally register its preferred Promise implementation and it will be exported when requiring any-promise from library code. –– any-promise

If no preference is registered, always defaults to native Promise, using native-promise detection. It defaults to global Promise for newer Node.js >= 0.12 versions. The browser version defaults to the window Promise, so polyfill or register as necessary.

Table of Contents

(TOC generated by verb using markdown-toc)

Install

Install with npm

$ npm install native-or-another --save

or install using yarn

$ yarn add native-or-another

Usage

For more use-cases see the tests.

Examples assumes that they are ran in older node versions, meaning < 0.12, be aware of that!

Get a Promise, always

Use it as any other Promise. It will give you native Promise always, until node < 0.12 - in that case it will try to load one of the common promise libraries, otherwise it will throw with a useful message to signal your users to install some of these promise implementations or register other one.

const Promise = require('native-or-another')

const promise = new Promise((resolve, reject) => {
  resolve(123)
})

promise.then((res) => console.log('foo:', res))

Custom Promise registration

You can .register() a custom Promise which will be used by the main export. That function also returns that Promise. If no arguments are passed, it will try to load some of the common promise libraries, again.

const register = require('native-or-another/register')

const MyCustomPromise = () => 444
register({ Promise: MyCustomPromise })

const Promize = require('native-or-another')

// loads `MyCustomPromise`
const res = Promize()
console.log(res) // => 444

// but also adds it to global scope
const res = Promise()
console.log(res) // => 444

// but also adds it to global.Promise
const res = global.Promise()
console.log(res) // => 444

Notice that it adds the promise to global scope and global, if you don't want that behaviour you should disable it through passing an option to .register function, like { global: false }.

const register = require('native-or-another/register')
const Promize = register({ global: false })

console.log(Promize) // => function
console.log(Promise) // => undefined
console.log(global.Promise) // => undefined

This is exactly how require('native-or-another') works!

Support for old Node.js versions

Node.js versions prior to v0.12 may have contained buggy versions of the global Promise. For this reason, the global Promise is not loaded automatically for these old versions.
If using native-or-another in Node.js versions < v0.12, the user should register a desired implementation.

If an implementation is not registered, native-or-another will attempt to discover an installed Promise implementation. If no implementation can be found, an error will be thrown on require('native-or-another'). While the auto-discovery usually avoids errors, it is non-deterministic. It is recommended that the user always register a preferred implementation for older Node.js versions.

This auto-discovery is only available for Node.js versions before v0.12. Any newer versions (includeing v0.12) will always default to the global Promise implementation.

Adapted from the any-promise readme.

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 © 2014, 2017, Charlike Mike Reagent. Released under the MIT License.


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

changelog

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

5.0.1 (2017-03-17)

Bug Fixes

  • libs: fix for q-like promise libs (a6152b8)

5.0.0 (2017-03-17)

Bug Fixes

  • package: add keywords (c45e56f)
  • readme: update related list (0badd4b)

Code Refactoring

  • rewrite: update boilerplate and rethink it (00e29b8)

BREAKING CHANGES

  • rewrite: main export now expose a Promise constructor; use native-or-another/register if you want to load custom promise for node < 0.12; register expects an "opts" object with "Promise" and "global" properties; if opts.global is false, it won't attach/add promise to global.Promise - this is enabled by default

v4.0.0 - 2016-08-25

  • Release v4.0.0 / npm@v4.0.0
  • update travis builds, update docs
  • replace assertit it with mukla
  • breaking: remove bluebird from dependencies

Throws if not native Promise support and not Promize were given and not bluebird were found. So if you wanna have Promise in `node@0.10or such, you should installbluebirdasdevDependency` or to pass some Promise implementation to that package.

It is removed, because bluebird is huge as kb and it will be there always, no matter if your environment have support for native Promise.

v3.0.2 - 2016-01-13

  • Release v3.0.2 / npm@v3.0.2
  • greenkeeper update all deps

v3.0.1 - 2015-09-29

  • Release v3.0.1 / npm@v3.0.1
  • fix/update tests - ensure properties exists and works on 0.10
  • fix changelog (notice added properties are prefixed with three underscores)

v3.0.0 - 2015-09-29

  • Release v3.0.0 / npm@v3.0.0
  • change prurpose of the library
  • refactor and update boilerplate

Basically, because native-or-bluebird always try to use bluebird first and then fallbacks to native Promise if available. So you don't have ability to get Promise or to provide different promise module than bluebird. So you can't get any promise in 0.10 enviroment for example.

So native-or-another is here to help and always will give you Promise, no matter what enviroment you use - iojs, 0.10, 0.11 or 0.12 or latest nodejs v4. It always will try to give you native Promsie first, otherwise will give you bluebird promise, but remember, only if you don't give another promise module like q or promise or what you want. See the example on README.md file.

You also can check what promise you use. If you use custom promise Promise module, the constructor will have property called ___customPromise (yes, three underscores) with true value. If you use Bluebird you will have property on the constructor ___bluebirdPromise (yes, three underscores) and again with true value. Otherwise they won't exist.

v2.0.0 - 2014-12-21

  • Release v2.0.0 / npm@v2.0.0
  • change the purpose of library
  • now exports deferred object

v1.0.0 - 2015-10-28

0.0.0 - 2014-10-28

  • Initial commit