@cycle/storage
TypeScript icon, indicating that this package has built-in type declarations

5.1.2 • Public • Published

Cycle Storage Driver

A Cycle.js Driver for using localStorage and sessionStorage in the browser.

npm install --save @cycle/storage

Usage

You can read the API docs here.

Basics:

import Cycle from '@cycle/core';
import storageDriver from '@cycle/storage';

function main(responses) {
  // ...
}

const drivers = {
  storage: storageDriver
}

Cycle.run(main, drivers);

Simple and normal use case (JSBin demo):

function main({DOM, storage}) {
   const storageRequest$ = DOM.select('input')
    .events('keypress')
    .map(function(ev) {
      return {
        key: 'inputText',
        value: ev.target.value
      };
    });

  return {
    DOM: storage.local
    .getItem('inputText')
    .startWith('')
    .map((text) =>
      h('input', {
        type: 'text',
        value: text
      })
    ),
    storage: storageRequest$
  };
}

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i @cycle/storage

Weekly Downloads

35

Version

5.1.2

License

MIT

Unpacked Size

109 kB

Total Files

32

Last publish

Collaborators

  • kahlil
  • cycle
  • ntilwalli
  • supermanitu