@amsterdam/use-promise

Making Promises in your components a breeze 🌬️

Usage no npm install needed!

<script type="module">
  import amsterdamUsePromise from 'https://cdn.skypack.dev/@amsterdam/use-promise';
</script>

README

usePromise · License: MPL 2.0 npm version

Making Promises in your components a breeze 🌬️

Features

  • Handle the result of your Promises easily.
  • Familiar handling of side effects using useEffect.
  • Easy cancellation of fetch requests with AbortSignal.
  • TypeScript support out of the box.

For more information see the Getting Started guide.

Installation

Install usePromise using yarn:

yarn add @amsterdam/use-promise

Or npm:

npm install @amsterdam/use-promise

Guides

Compatibility

This library will work in every environment (Node or browser) that supports AbortController, AbortSignal, Promise.allSettled and async functions. If you need to support an environment that does not have these features make sure to include the appropriate polyfills and transformations.