gcanti / fp-ts-local-storage

fp-ts bindings for LocalStorage

Home Page:https://gcanti.github.io/fp-ts-local-storage/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fp-ts bindings for LocalStorage

Documentation

Example

import * as assert from 'assert'
import { setItem, getItem } from 'fp-ts-local-storage'
import { some } from 'fp-ts/Option'
import { pipe } from 'fp-ts/pipeable'
import { chain } from 'fp-ts/IO'

// const program: IO<Option<string>>
const program = pipe(
  setItem('foo', JSON.stringify({ bar: 'baz' })),
  chain(() => getItem('foo'))
)

assert.deepStrictEqual(program(), some('{"bar":"baz"}'))

Note that localStorage may throw, for example if disabled by the user or with a QuotaExceededError, so you may want to wrap the API call with a tryCatch

import { setItem, getItem } from 'fp-ts-local-storage'
import { chain, tryCatch } from 'fp-ts/IOEither'
import { pipe } from 'fp-ts/pipeable'
import { toError } from 'fp-ts/Either'

// const program: IOEither<Error, Option<string>>
const program = pipe(
  tryCatch(setItem('foo', JSON.stringify({ bar: 'baz' })), toError),
  chain(() => tryCatch(getItem('foo'), toError))
)

About

fp-ts bindings for LocalStorage

https://gcanti.github.io/fp-ts-local-storage/

License:MIT License


Languages

Language:TypeScript 92.2%Language:JavaScript 7.8%