Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.41 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.41 KB

React.js Async Task

Continuous Integrations License Library minified size Library minified + gzipped size

Installation

This library is published in the NPM registry and can be installed using any compatible package manager.

npm install react-async-task --save

# For Yarn, use the command below.
yarn add react-async-task

Installation from CDN

This module has an IIFE bundle available through JSDelivr and Unpkg CDNs.

<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/react-async-task"></script>

<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/react-async-task"></script>

<script>
  function useProductList() {
    // IIFE module is exposed through the "ReactAsyncTask" global variable.
    return ReactAsyncTask.useAsyncTask(fetchProductList);
  }

  // ...
</script>

License

Released under MIT License.