npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@azerion/h5-kv-storage

v0.1.1

Published

h5-kv-storage ==================== A cross platform asyncronous key value storage library that allow you to switch the Storage adapter while keeping the same API in your game/application

Downloads

3

Readme

h5-kv-storage

A cross platform asyncronous key value storage library that allow you to switch the Storage adapter while keeping the same API in your game/application

Key features:

  • Cross browser support
  • Fully asynchronous
  • Built-in adapters for
  • Support for storing data across domains
  • Support for custom storage adapters
  • Support migration of data between Adapters
  • Allows setting of different log levels for easy debugging

Getting Started

First you want to get a fresh copy of the plugin. You can get it from this repo or from npm, ain't that handy.

npm install @azerion/h5-kv-storage --save-dev

Next up you'd want to import it where you want to use it :O

import { KvStorage, LogLevel, LocalStorage } from 'h5-kv-storage'

const storage = new KvStorage(LogLevel.debug);
storage.addAdapter(new LocalStorage());

Usage

When you load the plugin, it automatically checks for availability of localStorage and fallbacks to cookies if it's not available. Both of these are StorageAdapters and will be overwritten if you register a custom StorageAdaper, but more on this later. The plugin will append the Phaser game object with a storage object, you can reference this object with exactly the same API as localStorage, and should therefore be fairly easy for you to implement.

//Store Tetris at FavoriteGame
game.storage.setItem('FavoriteGame', 'Tetris');
//Get FavoriteGame
var favoriteGame = game.storage.getItem('FavoriteGame');  // Tetris
//Remove FavoriteGame
game.storage.removeItem('FavoriteGame');
//get the length of all items in storage
var l = game.storage.length;    // 1
//Get the name of the key at the n'th position
var keyName = game.storage.key(0); // FavoriteGame
//Clear all keys
game.storage.clear();

Namespaces

If you are like us, and put multiple games on the same domain, you might want to add namespaces to your localStorage. Namespaces get prepended to any key value pair you set, and all API calls to the storage object are segregated by namespaces. This allows you to set a 'score' key for multiple games on the same domain, and they'll always get their own stored value

game.storage.setNamespace('tetris');
game.storage.setItem('score', 250);
game.storage.setNamespace('pong');
//Length also takes namespaces into account
var l = game.storage.length;    // 0
//this won't do because the score was registered under a different namespace
var value = game.storage.get('score'); // null

Promises

Both Cookies and localStorage work synchronous, meaning you immediately get a return value after calling a function, e.g; getItem('key'); But when you are using a HTTP service (Amazon Cognito Sync, or custom REST server) or when you are using the iFrameStorage supported by this library, the results are coming back in an asynchronous manner. In order for you to parse your result nicely phaser-super-storage uses Promises to get you the result. It is also possible to enable promises on the Cookie and localStorage adapters by setting forcePromises to true.

//classical way of getting your item
var item = game.storage.getItem('key');
//Now we are gonna force promises
game.storage.forcePromises = true;
game.storage.getItem('key').then(function (item) {
    //do something with the item here
});

Adapters

The actual Storage of content happens within these so-called StorageAdapters. Basicly a StorageAdapter can store data somewhere, as long as it implements the following interface:

 interface IStorage {
    //Promises or no Promises
    forcePromises: boolean;
    //The amount of items in the storage
    length: number;
    //The namespace for the current storage
    namespace:string;
    //Get an item from the storage
    getItem(key: string): any | Promise<any>;
    //remove an item from the localStorage
    removeItem(key: string): any | Promise<any>;
    //Set an item in the storage
    setItem(key: string, value:any): void | Promise<void>;
    //Get the n'th key
    key(n: number): any | Promise<any>;
    //empty the (namespaced) storage
    clear(): void | Promise<void>;
    setNamespace(namespace: string): void | Promise<void>;
}

Local & Cookie Storage

The default usage of phaser-super-storage require the LocalStorage and CookieStorage adapter. It will always try to use the LocalStorage Adapater, but when all fails it falls back to Cookie storage, no configuration needed! Cordova

You can now also use the CordovaStorage adapter, which uses the NativeStorage plugin of Cordova. This prevents the auto-deletion of data on IOS when not having enough memory. If you are using the adapter, please note that passing the namespace in the constructor is not allowed and that it is only testable in a Cordova application. It can be enabled by the following command:

game.storage.setAdapter(new PhaserSuperStorage.StorageAdapters.CordovaStorage());

Iframe

We publish our games on HTML5 game portals through the usage of iframes, a downside of this is that for iOS both localStorage and Cookies aren't persisted for iframes. In order to counter this we included an IframeStorage adapter that should be set in the game, then the helper script included in the build folder should be loaded in the parent frame. This way we'll utilize the storage capacity of the parent frame to store our data

<!--So in the parent frame we include the following: -->
<script src="http://cdn.fbrq.io/phaser-super-storage/phaser-storage-helper.min.js" type="text/javascript"></script>
//Then in our game we add the iframe adapter
var iframeAdapter = new IframeStorage(
    '',                     //The namespace to store the data under
    document.referrer       //Then url of the parent domain, you need this for security reasons
);
//We call init first to see if the helper script is available, result as a Promise due to asynchronous communication
iframeAdapter.init().then(function() {
    //It succeeded! Now set the iframe adapter as the main storage adapter
    game.storage.setAdapter(iframeAdapter);
}).catch(function (e) {
    //failed to start communication with parent, so lets enable promises on the original storage adapter to keep the API the same
    game.storage.forcePromises = true;
});

Caveats

Although we try our best to store data, in some cases you can consider data lost when a user closes his browser or ends his session. I'm talking of course about private browsing. Both LocalStorage and Cookies will be cleared, so if you want to keep userdata alive there I suggest you try to get people to login and use a custom StorageAdapter to save the data server-side. Please note that we use the colon as namespace appendix, so we advice you not to use it yourself.

Disclaimer

We at Azerion just love playing and creating awesome games and we just needed to store some awesome game data in our awesome HTML5 games. Feel free to use it for enhancing your own awesome games! h5-kv-storage is distributed under the MIT license. All 3rd party libraries and components are distributed under their respective license terms.