Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 811 Bytes

README.md

File metadata and controls

44 lines (31 loc) · 811 Bytes

@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
}