All Projects → naver → Egjs Persist

naver / Egjs Persist

Licence: mit
Provide cache interface to handle persisted data among history navigation.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Egjs Persist

Jstarcraft Core
目标是提供一个通用的Java核心编程框架,作为搭建其它框架或者项目的基础. 让相关领域的研发人员能够专注高层设计而不用关注底层实现. 涵盖了缓存,存储,编解码,资源,脚本,监控,通讯,事件,事务9个方面.
Stars: ✭ 150 (+455.56%)
Mutual labels:  cache, storage
Bus
Bus 是一个基础框架、服务套件,它基于Java8编写,参考、借鉴了大量已有框架、组件的设计,可以作为后端服务的开发基础中间件。代码简洁,架构清晰,非常适合学习使用。
Stars: ✭ 253 (+837.04%)
Mutual labels:  cache, storage
Cash
HTTP response caching for Koa. Supports Redis, in-memory store, and more!
Stars: ✭ 122 (+351.85%)
Mutual labels:  cache, storage
Bojack
🐴 The unreliable key-value store
Stars: ✭ 101 (+274.07%)
Mutual labels:  cache, storage
elara
Elara DB is an easy to use, lightweight key-value database that can also be used as a fast in-memory cache. Manipulate data structures in-memory, encrypt database files and export data. 🎯
Stars: ✭ 93 (+244.44%)
Mutual labels:  storage, cache
storage-box
Intuitive and easy-to-use storage box.
Stars: ✭ 26 (-3.7%)
Mutual labels:  storage, cache
Caching
⏱ Caching library with easy-to-use API and many cache backends.
Stars: ✭ 234 (+766.67%)
Mutual labels:  cache, storage
Easystash
🗳Easy data persistence in Swift
Stars: ✭ 303 (+1022.22%)
Mutual labels:  cache, storage
incache
Powerful key/value in-memory storage or on disk to persist data
Stars: ✭ 16 (-40.74%)
Mutual labels:  storage, cache
infinitree
Scalable and encrypted embedded database with 3-tier caching
Stars: ✭ 80 (+196.3%)
Mutual labels:  storage, cache
DTC
DTC is a high performance Distributed Table Cache system designed by JD.com that offering hotspot data cache for databases in order to reduce pressure of database and improve QPS.
Stars: ✭ 21 (-22.22%)
Mutual labels:  storage, cache
Koa Redis
Redis storage for Koa session middleware/cache with Sentinel and Cluster support
Stars: ✭ 324 (+1100%)
Mutual labels:  cache, storage
Outputcache
Cache api responses using Redis, Memcached or any cache provider for NodeJS
Stars: ✭ 9 (-66.67%)
Mutual labels:  cache
Go Cache
Go in-memory cache library
Stars: ✭ 15 (-44.44%)
Mutual labels:  cache
Mlcache
A library make cache easily
Stars: ✭ 9 (-66.67%)
Mutual labels:  cache
Data Engineering
Wraps the DB by opening a REST API for storing and retrieving documents info & recommendations
Stars: ✭ 9 (-66.67%)
Mutual labels:  storage
Redux Tide
Simple library for redux crud normalized state and actions/selectors for it
Stars: ✭ 20 (-25.93%)
Mutual labels:  storage
Shrine Imgix
Imgix integration for Shrine
Stars: ✭ 12 (-55.56%)
Mutual labels:  storage
Openebs
Leading Open Source Container Attached Storage, built using Cloud Native Architecture, simplifies running Stateful Applications on Kubernetes.
Stars: ✭ 7,277 (+26851.85%)
Mutual labels:  storage
Weixinmpsdk
微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0。已支持微信公众号、小程序、小游戏、企业号、企业微信、开放平台、微信支付、JSSDK、微信周边等全平台。 WeChat SDK for C#.
Stars: ✭ 7,098 (+26188.89%)
Mutual labels:  cache

egjs-persist npm version Build Status Coverage Status

Provide cache interface to handle persisted data among history navigation.

Documents

Download and Installation

Download dist files from repo directly or install it via npm.

For development (Uncompressed)

You can download the uncompressed files for development

For production (Compressed)

You can download the compressed files for production

Installation with npm

The following command shows how to install egjs-persist using npm.

$ npm install @egjs/persist

Supported Browsers

The following are the supported browsers.

Internet Explorer Chrome Firefox Safari iOS Android
9+ latest latest latest 7+ 2.3+ (except 3.x)

How to start developing egjs-persist?

For anyone interested to develop egjs-persist, follow the instructions below.

Development Environment

1. Clone the repository

Clone the egjs-persist repository and install the dependency modules.

# Clone the repository.
$ git clone https://github.com/naver/egjs-persist.git

2. Install dependencies

npm is supported.

# Install the dependency modules.
$ npm install

3. Build

Use npm script to build eg.Persist

# Run webpack-dev-server for development
$ npm start

# Build
$ npm run build

# Generate jsdoc
$ npm run jsdoc

Two folders will be created after complete build is completed.

  • dist folder: Includes the persist.js and persist.min.js files.
  • doc folder: Includes API documentation. The home page for the documentation is doc/index.html.

Linting

To keep the same code style, we adopted ESLint to maintain our code quality. The rules are modified version based on Airbnb JavaScript Style Guide. Setup your editor for check or run below command for linting.

$ npm run lint

Test

Once you created a branch and done with development, you must perform a test running npm run test command before you push code to a remote repository.

$ npm run test

Running a npm run test command will start Mocha tests via Karma-runner.

Bug Report

If you find a bug, please report it to us using the Issues page on GitHub.

License

egjs-persist is released under the MIT license.

Copyright (c) 2015 NAVER Corp.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].