Skip to content
This repository has been archived by the owner on Nov 29, 2018. It is now read-only.

Commit

Permalink
lowercase project name
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcontento committed Feb 9, 2016
1 parent f0b6a71 commit 76e6c27
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
# [redux-storage-engine-localStorageFakePromise][]
# [redux-storage-engine-localstoragefakepromise][]

[![build](https://travis-ci.org/michaelcontento/redux-storage-engine-localStorageFakePromise.svg)](https://travis-ci.org/michaelcontento/redux-storage-engine-localStorageFakePromise)
[![dependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localStorageFakePromise.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localStorageFakePromise)
[![devDependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localStorageFakePromise/dev-status.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localStorageFakePromise#info=devDependencies)
[![build](https://travis-ci.org/michaelcontento/redux-storage-engine-localstoragefakepromise.svg)](https://travis-ci.org/michaelcontento/redux-storage-engine-localstoragefakepromise)
[![dependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localstoragefakepromise.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localstoragefakepromise)
[![devDependencies](https://david-dm.org/michaelcontento/redux-storage-engine-localstoragefakepromise/dev-status.svg)](https://david-dm.org/michaelcontento/redux-storage-engine-localstoragefakepromise#info=devDependencies)

[![license](https://img.shields.io/npm/l/redux-storage-engine-localStorageFakePromise.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localStorageFakePromise)
[![npm version](https://img.shields.io/npm/v/redux-storage-engine-localStorageFakePromise.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localStorageFakePromise)
[![npm downloads](https://img.shields.io/npm/dm/redux-storage-engine-localStorageFakePromise.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localStorageFakePromise)
[![Code Climate](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localStorageFakePromise/badges/gpa.svg)](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localStorageFakePromise)
[![license](https://img.shields.io/npm/l/redux-storage-engine-localstoragefakepromise.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localstoragefakepromise)
[![npm version](https://img.shields.io/npm/v/redux-storage-engine-localstoragefakepromise.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localstoragefakepromise)
[![npm downloads](https://img.shields.io/npm/dm/redux-storage-engine-localstoragefakepromise.svg?style=flat-square)](https://www.npmjs.com/package/redux-storage-engine-localstoragefakepromise)
[![Code Climate](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localstoragefakepromise/badges/gpa.svg)](https://codeclimate.com/github/michaelcontento/redux-storage-engine-localstoragefakepromise)

`window.localStorage` based engine for [redux-storage][] - like
[redux-storage-engine-localStorage][] - but it does not require a environment
[redux-storage-engine-localstorage][] - but it does not require a environment
with ES6 Promises.

## Warning

In contrast to [redux-storage-engine-localStorage][] this engine can be used
In contrast to [redux-storage-engine-localstorage][] this engine can be used
with old browsers like IE<=11. **BUT** the best solution for you would be to
use a Promise polyfill like [es6-promise][].

## Installation

npm install --save redux-storage-engine-localStorageFakePromise
npm install --save redux-storage-engine-localstoragefakepromise

## Usage

Similar to [redux-storage-engine-localStorage][]:
Similar to [redux-storage-engine-localstorage][]:

```js
import createEngine from 'redux-storage-engine-localStorageFakePromise';
import createEngine from 'redux-storage-engine-localstoragefakepromise';
const engine = createEngine('my-save-key');
```

Expand Down Expand Up @@ -56,6 +56,6 @@ const engine = createEngine('my-save-key');
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

[redux-storage]: https://github.com/michaelcontento/redux-storage
[redux-storage-engine-localStorage]: https://github.com/michaelcontento/redux-storage-engine-localStorage
[redux-storage-engine-localStorageFakePromise]: https://github.com/michaelcontento/redux-storage-engine-localStorageFakePromise
[redux-storage-engine-localstorage]: https://github.com/michaelcontento/redux-storage-engine-localstorage
[redux-storage-engine-localstoragefakepromise]: https://github.com/michaelcontento/redux-storage-engine-localstoragefakepromise
[es6-promise]: https://www.npmjs.com/package/es6-promise
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "redux-storage-engine-localStorageFakePromise",
"name": "redux-storage-engine-localstoragefakepromise",
"version": "1.0.0",
"description": "window.localStorage engine for redux-storage (no Promises required)",
"main": "build/index.js",
Expand All @@ -9,9 +9,9 @@
},
"repository": {
"type": "git",
"url": "https://github.com/michaelcontento/redux-storage-engine-localStorageFakePromise.git"
"url": "https://github.com/michaelcontento/redux-storage-engine-localstoragefakepromise.git"
},
"homepage": "https://github.com/michaelcontento/redux-storage-engine-localStorageFakePromise",
"homepage": "https://github.com/michaelcontento/redux-storage-engine-localstoragefakepromise",
"keywords": [
"redux",
"redux-storage",
Expand Down

0 comments on commit 76e6c27

Please sign in to comment.