Regenerate effect to use fetch-like requests
# Using yarn
yarn add @regenerate/effect-fetch
# Using npm
npm i @regenerate/effect-fetch
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 })
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
}