Skip to content

jderochervlk/fp-ts-fetch

Repository files navigation

@jvlk/fp-ts-fetch

Fetch wrappers for fp-ts.

Examples

// safeFetch
import { safeFetch } from '@jvlk/fp-ts-fetch'

safeFetch('testing.com')
import { safeFetchJson } from '@jvlk/fp-ts-fetch'

safeFetchJson('api.com')() // => Either<Error, T>

Installing

npm i @jvlk/fp-ts-fetch
yarn add @jvlk/fp-ts-fetch