Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@azerion/h5-kv-storage
Advanced tools
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
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:
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());
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();
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
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
});
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>;
}
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());
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;
});
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.
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.
FAQs
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
We found that @azerion/h5-kv-storage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.