1.0.2 • Published 5 years ago

react-storehouse v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

react-storehouse

A React component interface to LocalStorage

Example

This is a no frills example of using react-storehouse for a user name.

  <LocalStorageProvider
    item="name"
    render={(name = "Guest", update) => (
      <h1>Hi {name}!</h1>
      <input
        onChange={e => update(e.target.value)}
        type="text"
      />
    )}
  />

Installation

Node

npm i react-storehouse --save or yarn add react-storehouse

Browser

Exports ReactStorehouse on window.

<script
  crossorigin
  src="https://unpkg.com/react-storehouse"
></script>

Code Quality

Learn React open source, is intended for education. Source should be singularly focus and readable above all.

License

MIT License Copyright © Michael Chan 2017

1.0.2

5 years ago

1.0.1

6 years ago

1.0.0

7 years ago

0.0.0

8 years ago