1.0.2 • Published 3 years ago

@regenerate/effect-fetch v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@regenerate/effect-fetch

Regenerate effect to use fetch-like requests

Installation

# Using yarn
yarn add @regenerate/effect-fetch

# Using npm
npm i @regenerate/effect-fetch

Set up

Create a src/effects/http.js file in your project with the following content:

import createFetchEffect from '@regenerate/effect-fetch'

// You can use any module that is compliant with the fetch API
import fetch from 'isomorphic-unfetch'

export default createFetchEffect({ fetch })

Usage

It can be used like the fetch API

function * fetchTodos () {
  const todos = yield http.fetchJson(
    'http://api.url/todos',
    {
      method: 'GET'
      /* fetch options */
    }
  )
  // Rest of effects
}
1.0.2

3 years ago

1.0.2-alpha

3 years ago

1.0.1-0

3 years ago