fishbird
TypeScript icon, indicating that this package has built-in type declarations

1.1.8 • Public • Published

Fishbird

NPM version Tests Install size Bundle size License Ask me in Telegram

Fishbird is a simple, lightweight, and fast Promise utility library.

  • Small. Less 1Kb (minified and gzipped). No dependencies.
  • Fast. Its 2 times faster than Bluebird by benchmarkes.
  • ES modules and tree-shaking support.
  • TypeScript friendly.
  • Portable Supports modern browsers, IE with Babel, Node.js and React Native.
  • Compatible with Bluebird API.
import { map } from 'fishbird';

const res = map([1 ,2, 3], async (id) => {
  const res = await fetch(id);
  return res.json();
});

Docs

Read full docs here.

/fishbird/

    Package Sidebar

    Install

    npm i fishbird

    Weekly Downloads

    347

    Version

    1.1.8

    License

    MIT

    Unpacked Size

    51.6 kB

    Total Files

    90

    Last publish

    Collaborators

    • isuvorov