• Stars
    star
    571
  • Rank 75,467 (Top 2 %)
  • Language
    CoffeeScript
  • License
    Other
  • Created about 12 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

redis-like wrapper for javascript storage

BankersBox

Build Status

A redis-like wrapper for javascript data storage using localStorage as the default persistent data-store.

Motivation

Modern browsers provide a native javascript localStorage object which acts as a simple client-side key-value store per origin. Currently, storage is limited to 5MB and can only store strings as values (integers, floats, and booleans are coerced into strings upon save).

Redis is an insanely popular key-value server on steroids. It provides many more capabilities than just simple key-value storage.

BankersBox aims to bring redis-like APIs and behavior to the client-side using localStorage as the default data backing mechanism. You can store strings, arrays, and javscript objects in BankersBox. Behind the scenes, BankersBox transparently uses JSON.stringify and JSON.parse to save and restore non-string values to their original types.

BankersBox uses a pluggable storage adapter system so that other methods may be used to persist and restore data other than with localStorage. See the Storage Adapters section below.

BankersBox is not a redis client. It is only meant to be a storage abstraction with redis-like APIs and behaviors for those familiar with the redis way. If you are looking for a javascript redis client (e.g. for use with node.js) please turn back now.

Usage

Like redis, BankersBox has the concept of "databases" which are just stores with different index numbers. BankersBox takes the id of the store you wish to use in the constructor. Each id maps to a different store, so if you set "foo" in two separate stores, they will retain their separate values.

var bb = new BankersBox(1);

bb.set("foo", "bar");
bb.get("foo"); // returns "bar"

bb.set("count", 10);
bb.incr("count"); // sets "count" to 11, returns 11

bb.incr("newcount"); // sets "newcount" to 1, returns 1

bb.lpush("mylist", "hello");
bb.lrange("mylist", 0, -1); // returns ["hello"]

bb.rpush("mylist", "world");
bb.lrange("mylist", 0, -1); // returns ["hello", "world"]

bb.sadd("myset", "apple");
bb.sadd("myset", "oragne");
bb.smembers("myset"); // returns ["apple", "orange"]
bb.sismember("myset", "apple"); // returns true
bb.sismember("myset", "lemon"); // returns false
bb.scard("myset"); // returns 2

Notes on BankersBox data types

Keys

Keys must be strings.

Simple key-value pairs

In redis, key-value values must also be strings, but with BankersBox you can also store numbers, booleans, arrays, and objects.

When dealing with operations that involve numeric values (incr, decr, etc) the values should be numbers (duh).

LISTS

Values stored in lists can also be strings, numbers, booleans, arrays, and objects.

SETS

Values stored in sets should be strings. When storing arrays or objects in sets, the behavior is undefined.

Implemented Functions

  • KEYS
    • keys
    • del
    • exists
    • type
  • STRINGS
    • append
    • decr
    • decrby
    • incr
    • incrby
    • get
    • getset
    • set
    • setnx
    • strlen
  • HASHES
    • none, see TODO.md
  • LISTS
    • lindex
    • llen
    • lpop
    • lpush
    • lpushx
    • lrange
    • lrem
    • lset
    • ltrim
    • rpop
    • rpoplpush
    • rpush
    • rpushx
  • SETS
    • sadd
    • scard
    • sismember
    • smembers
    • smove
    • spop
    • srandmember
    • srem
  • SORTED SETS (ZSET)
    • none, see TODO.md
  • CONNECTION
    • select

Storage Adapters

By default, BankersBox will use localStorage to persist data between sessions.

The main bankersbox.js file comes with two adapters built in:

  • BankersBoxLocalStorageAdapter - default adapter for using localStorage
  • BankersBoxNullAdapter - adapter which does not persist or restore data anywhere, good for testing

To specify your desired storage adapter, pass it into the constructor in the options hash:

bb = new BankersBox(1, {adapter: new BankersBoxNullAdapter()});

To create your own adapter, you must create an object which has the following three functions:

  • storeItem(key, value)
    • stores a value in the data-store associated with a key
    • param: key - a string
    • param: value - a string
    • returns: void
  • getItem(key)
    • retrieves a value from the data-store for the associated key
    • param: key - a string
    • returns: string - the value represented by key
  • removeItem(key)
    • deletes the value in the data-store associated with the key
    • param: key - a string
    • returns: void

If you create your own adapters, please add appropriate unit tests following the examples in the tests/adapter_*.test.coffee files.

API Usage

BankersBox has tried to adhere as closely as possible to the Redis command API and return values associated with each command.

You can read the full Redis Command Documentation.

In the cases where Redis would normally return a nil value, BankersBox will return the javascript null value. In the cases where Redis would return an error, BankersBox will throw a BankersBoxException or BankersBoxKeyException depending on the situation.

Usage On Your Webpage

Simply copy bankersbox.js (or bankersbox.min.js if you have minified) to your site's static assets folder and link to it inside your page source:

<script type="text/javascript" src="/path/to/bankersbox.js"></script>

BankersBox depends on using a global JSON object which must provide parse and stringify functions. Make sure to include a JSON library in the page as well or BankersBox will throw an exception when you try to instantiate.

Development

To develop on BankersBox, simply hack on bankersbox.js.

To install the node modules needed for testing, simply:

npm install

Testing

BankersBox has a large suite of unit tests. If you add new functionality, please update (or add) the appropriate tests/bb_*.test.coffee file with new tests. You can run the unit tests with:

make test

Minify

BankersBox is minified using the Google Closure javascript compression tool. This is handled in the Makefile with:

make min

This will output bankersbox.min.js. To test the minified version as well, simply:

make testall

License

MIT License - see LICENSE for details

Misc

Pull requests welcome, please contribute!

More Repositories

1

twilio-video-app-react

A collaboration application built with the twilio-video.js SDK and React.js
TypeScript
1,793
star
2

twilio-python

A Python module for communicating with the Twilio API and generating TwiML.
Python
1,707
star
3

stashboard

An open-source status dashboard running on App Engine
Python
1,594
star
4

twilio-php

A PHP library for communicating with the Twilio REST API and generating TwiML.
PHP
1,447
star
5

twilio-ruby

A Ruby gem for communicating with the Twilio API and generating TwiML
Ruby
1,335
star
6

twilio-node

Node.js helper library
TypeScript
1,304
star
7

OpenVBX

OpenVBX is a web-based open source phone system for business.
PHP
699
star
8

twilio-csharp

Twilio C#/.NET Helper Library for .NET Framework 3.5+ and supported .NET Core versions
C#
636
star
9

twilio-video.js

Twilio’s Programmable Video JavaScript SDK
JavaScript
563
star
10

video-quickstart-ios

Twilio Video Quickstart for iOS
Swift
455
star
11

twilio-java

A Java library for communicating with the Twilio REST API and generating TwiML.
Java
440
star
12

video-quickstart-js

A quickstart and code samples for Twilio Video JavaScript SDK. https://www.twilio.com/docs/video
JavaScript
390
star
13

shadow

A HTTP debugging proxy that helps you with your continuous deployments
JavaScript
330
star
14

twilio-go

A Go package for communicating with the Twilio API.
Go
249
star
15

authy-php

A PHP client for Authy
PHP
245
star
16

twilio-video-app-ios

A collaboration application built with the Twilio Video iOS SDK
Swift
245
star
17

twilio-sans-mono

Twilio Sans Mono is a beautiful and extensive open source programming font
Shell
240
star
18

twilio-video-app-android

A collaboration application built with the Twilio Video Android SDK
Kotlin
239
star
19

video-quickstart-android

Twilio Video Quickstart for Android
Java
210
star
20

authy-devise

Authy Devise plugin to add Two-Factor Authentication
Ruby
199
star
21

authy-python

Authy API Client for Python
Python
188
star
22

twilio-salesforce

A Salesforce/Force.com library for communicating with the Twilio REST API and generating TwiML. Need help? Post your questions to http://getsatisfaction.com/twilio or email us at [email protected]
Apex
186
star
23

voice-quickstart-android

Quickstart app for the Voice Android SDK
Java
185
star
24

voice-quickstart-ios

Twilio Voice Quickstart for iOS with Swift
Objective-C
177
star
25

authy-ruby

**Deprecated** Ruby library to access the authy API
Ruby
156
star
26

audioswitch

An Android audio management library for real-time communication apps.
Kotlin
153
star
27

authy-openvpn

Authy Open VPN Two-Factor Authentication
C
152
star
28

twilio-cli

Unleash the power of Twilio from your command prompt
JavaScript
150
star
29

gameday

A collection of Twilio SRE's Gameday Templates
140
star
30

chessms

Play Chess over SMS!
Erlang
112
star
31

TwilioChatJsReactNative

ReactNative app example for Twilio Programmable Chat with working iOS and Android push messages https://www.twilio.com/chat
JavaScript
112
star
32

twilio-oai

The Twilio OpenAPI Specification
Makefile
112
star
33

apkscale

A Gradle plugin to measure the app size impact of Android libraries
Kotlin
94
star
34

OpenVBX-iPhone

OpenVBX for iPhone
Objective-C
92
star
35

twilio-chat-demo-js

Programmable Chat API Demo Application for JavaScript
JavaScript
92
star
36

media-streams

Quick start guides for configuring and consuming Twilio Media Streams
Ruby
91
star
37

twilio-conversations-demo-react

Twilio Conversations Demo Web Application
TypeScript
87
star
38

starter-node

A starter app for node.js developers embarking on their first Twilio quest!
JavaScript
84
star
39

authy-form-helpers

Authy javascripts and css file to help create quick forms for the authy api
CoffeeScript
83
star
40

flex-plugin-builder

Packages related to building a Twilio Flex Plugin
TypeScript
82
star
41

starter-python

A starter app for Python developers embarking on their first Twilio quest!
CSS
76
star
42

sourd.io

sourd.io: temperature, humidity, and rise monitoring for your sourdough starter
C++
72
star
43

twilio-client.js

Twilio’s Programmable Voice JavaScript SDK
TypeScript
67
star
44

authy-java

Java Client for Twilio Authy Two-Factor Authentication (2FA) API
Java
65
star
45

twilio-video-ios

Programmable Video SDK by Twilio
Swift
63
star
46

twilio-chat-demo-android

Chat API Demo Application for Android
Kotlin
63
star
47

terraform-provider-twilio

Terraform Twilio provider
Go
57
star
48

twilio-voice-react-native

TypeScript
56
star
49

twilio-webchat-react-app

Twilio Webchat React App is an application that demonstrates a website chat widget built with Twilio's Conversations JS SDK, Twilio Paste Design library and Create React App.
TypeScript
55
star
50

twilio-webrtc.js

WebRTC-related APIs and shims used by twilio-video.js
JavaScript
49
star
51

twilio-voice.js

Twilio's JavaScript Voice SDK
TypeScript
47
star
52

rtc-diagnostics

TypeScript
44
star
53

flex-ui-sample

Twilio Flex UI Sample
JavaScript
42
star
54

twilio-video-diagnostics-react-app

A diagnostics tool that tests a participant's ability to have a quality video call. Built with the twilio-video.js SDK, RTC Diagnostics SDK, and React.js.
TypeScript
41
star
55

wiztowar

Build WARs from your Dropwizard apps
Java
40
star
56

voice-quickstart-objc

Twilio Voice Quickstart for iOS with Objective-C
Objective-C
38
star
57

hackathons

A collection of tips and tricks for using Twilio at hackathons
37
star
58

twilio-voice-ios

Programmable Voice SDK by Twilio
Swift
36
star
59

sample-code

Auto-generated code samples for the Twilio REST API
Java
36
star
60

draw-with-twilio

Draw with Twilio
JavaScript
35
star
61

twilio-voice-notification-app

Reference app built in ReactJS that demonstrates how to leverage Twilio Programmable Voice and Twilio SDKs to create a voice notification system.
TypeScript
34
star
62

video-quickstart-objc

Twilio Video Quickstart for iOS with Objective-C
Objective-C
33
star
63

twilio-video-processors.js

Twilio Video Processors is a collection of video processing tools which can be used with Twilio Video JavaScript SDK to apply transformations and filters to a video track.
TypeScript
33
star
64

TwilioChatXamarinBindings

Twilio Chat Bindings for Xamarin (Android and iOS) and Sample app with working FCM and APN pushes using those bindings.
C#
32
star
65

twilio-live-interactive-video

An interactive live video app built with Twilio Live and Twilio Video
TypeScript
31
star
66

twilio-video.js-recording-bot

JavaScript
30
star
67

flex-webchat-ui-sample

Twilio Flex Web Chat UI Sample
JavaScript
30
star
68

twilio-chat-demo-ios

Twilio Programmable Chat Demo Application for iOS
Objective-C
28
star
69

ortc-adapter

ORTC to WebRTC Adapter
JavaScript
28
star
70

cloudsec

27
star
71

starter-ruby

A starter app for Ruby developers embarking on their first Twilio quest!
JavaScript
27
star
72

calcite-kudu

Apache Calcite Adapter for Apache Kudu
Java
26
star
73

autopilot-cli

The Twilio Autopilot CLI is now deprecated. Please use the Autopilot Plugin for the Twilio CLI here https://www.twilio.com/docs/autopilot/twilio-autopilot-cli
JavaScript
26
star
74

twilio-oai-generator

Twilio OpenAPI client generator
Java
25
star
75

voice-quickstart-server-node

voice quickstart server example in node
JavaScript
25
star
76

voice-quickstart-server-python

Python
25
star
77

twilio-voice-react-native-app

TypeScript
25
star
78

twilio-video-room-monitor.js

A browser-based tool that displays information and metrics about Twilio Video JavaScript applications
TypeScript
24
star
79

video-shared-arkit-sample

ARKit + Twilio Video Data Tracks demo
Swift
24
star
80

twilio-boost-build

Build tool for boost libraries on android, ios, linux and osx
Shell
23
star
81

wireless-security-camera

Create a Twilio-powered device that keeps watch over dangerous and remote locations and alerts stakeholders of intrusions or safety concerns.
CSS
22
star
82

starter-java

A starter app for Java developers embarking on their first Twilio quest!
CSS
22
star
83

twilio-taskrouter.js

JS SDK v2 for Twilio's TaskRouter skills based routing system.
JavaScript
21
star
84

autopilot-templates

JavaScript
20
star
85

wireless-fleet-tracker

Create a Twilio-powered Fleet Tracker that uses off-the-shelf components to track and log: miles driven, hours of uptime and downtime, locations, average speed, and fuel consumption.
CSS
20
star
86

client-js-1.4-examples

Examples for using the new Client JS 1.4 Audio functionality
JavaScript
19
star
87

voices

Twilio Voices - Contribute programming tutorials to the Twilio blog. Get paid for each post you publish.
19
star
88

wp-click2call

Wordpress Plugin for Click2Call
PHP
19
star
89

authy.net

.NET Library to access the Authy API
C#
19
star
90

starter-php

A starter app for PHP developers embarking on their first Twilio quest!
PHP
19
star
91

Breakout_Arduino_Library

C
18
star
92

howtos

Sample applications that cover common use cases in a variety of languages.
Python
18
star
93

wireless-postman-collection

This repository includes a group of Programmable Wireless HTTP requests for your convenience. You can learn more about Programmable Wireless HTTP request formats in the Programmable Wireless Documentation.
18
star
94

rtc-diagnostics-react-app

TypeScript
18
star
95

linkit-one-sensor-samples

Samples for the LinkIt ONE Starter Kit
C++
17
star
96

cerebro

Python
17
star
97

twilio-flex-token-validator

Flex JWE Token Validator
TypeScript
17
star
98

twilio-conversations-demo-android-kotlin

An application demonstrating use of Twilio Conversations on Android - this is a full working Kotlin application
Kotlin
16
star
99

twilio-verify-ios

Twilio Verify Push SDK helps you verify users by adding a low-friction, secure, cost-effective, "push verification" factor into your own apps. This project provides an SDK to implement Verify Push for your iOS app.
Swift
16
star
100

twilio-chat-console-webapp.js

Web Console example app for Twilio Programmable Chat with working push messages
JavaScript
15
star