This package has been deprecated

Author message:

no longer supported. 10 years since last update

bluemixdatacache

0.1.2 • Public • Published

bluemixdatacache

A simple Node.js library to interact with BlueMix's DataCache service.

It:

  • parses the credentials found in BlueMix's environment variables
  • exposes put/get/remove functions to add/fetch/remove key/value pairs
var bluemixdatacache = require('bluemixdatacache');

bluemixdatacache.put('mykey', {a:1, b:"two", c:true}, function(err, data) {
  bluemixdatacache.get('mykey', function(err, data) {
    console.log("Got", data);
  });
});

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i bluemixdatacache

    Weekly Downloads

    1

    Version

    0.1.2

    License

    none

    Last publish

    Collaborators

    • glynnbird