add storage

This commit is contained in:
chencheng 2014-07-13 16:28:40 +08:00
parent cd668a3322
commit 106ccd8511
1 changed files with 11 additions and 1 deletions

View File

@ -14,7 +14,7 @@ A curated list of amazingly awesome browser-side JavaScript libraries, resources
* [Functional Programming](#functional-programming)
* [Date](#date)
* [String](#string)
* Storage
* [Storage](#storage)
* [Color](#color)
* [I18n And L10n](#i18n-and-l10n)
* Selector
@ -181,6 +181,16 @@ There're also some great commercial libraries, like [amchart](http://www.amchart
* [jsurl](https://github.com/Mikhus/jsurl) - Lightweight URL manipulation with JavaScript.
* [sprintf.js](https://github.com/alexei/sprintf.js) - A sprintf implementation.
## Storage
* [store.js](https://github.com/marcuswestin/store.js) - LocalStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userData behavior under the hood.
* [localForage](https://github.com/mozilla/localForage) - Offline storage, improved. Wraps IndexedDB, WebSQL, or localStorage using a simple but powerful API.
* [jStorage](https://github.com/andris9/jStorage) - jStorage is a simple key/value database to store data on browser side.
* [basket.js](https://github.com/addyosmani/basket.js) - A script and resource loader for caching & loading scripts with localStorage.
* [jquery-cookie](https://github.com/carhartl/jquery-cookie) - A simple, lightweight jQuery plugin for reading, writing and deleting cookies.
## Color
* [randomColor](https://github.com/davidmerfield/randomColor) - A color generator for JavaScript.