Skip to content

mross-pivotal/node-gemfire

 
 

Repository files navigation

Node GemFire

Build Status

NodeJS client for Pivotal GemFire

Supported platforms

  • CentOS 6.5
  • Other 64-bit Linux platforms may work.

Tested node.js runtime versions

  • 0.12.7
  • 0.11.16
  • 0.10.40

Installation

Prerequisites

  1. Download and install the GemFire 8.1.0.0 Native Client for your platform from Pivotal Network.
  2. Set the environment variables described by the GemFire Native Client installation instructions for your platform.

Installing the NPM package

Note that for the time being, if you want to be able to use the precompiled binary, you'll need to set NODE_TLS_REJECT_UNAUTHORIZED=0 when running npm install. Otherwise, npm install will fallback to compiling from source, which may only work on certain platforms.

$ cd /my/node/project
$ NODE_TLS_REJECT_UNAUTHORIZED=0 npm install --save gemfire

Configuring the GemFire client

It is possible to configure the GemFire C++ Native Client compiled into this node module via a file called gfcpp.properties. Place this file in the current working directory of your node application.

Here is an example file that turns off statistics collection, sets the "warning" log level, and redirects the log output to a file.

statistic-sampling-enabled=false
log-level=warning
log-file=log/gemfire.log

You can see the available options for gfcpp.properties in the GemFire documentation.

Usage

var gemfire = require('gemfire');
gemfire.configure('config/cache.xml');

var cache = gemfire.getCache();
var region = cache.getRegion('myRegion');

region.put('foo', { bar: ['baz', 'qux'] }, function(error) { 
  region.get('foo', function(error, value) {
    console.log(value); // => { bar: ['baz', 'qux'] }
  });
});

For more information, please see the full API documentation.

Development

Prerequisites

Setup

To build the VM:

$ vagrant up

Re-provision VM to install missing dependencies

After pulling down updated code, you may need to re-provision your VM to get any new dependencies.

$ vagrant provision

Developer workflow

This directory is mounted on the VM as /vagrant. You can make edits here or on the VM.

$ vagrant ssh
$ cd /vagrant

Rebuild the node module and run Jasmine tests

$ vagrant ssh
$ cd /vagrant
$ grunt

Server Management

The GemFire server should be automatically started for you as part of the above tasks. If you need to restart it manually, use the following:

$ vagrant ssh
$ grunt server:restart # or server:start or server:stop

Contributing

Please see CONTRIBUTING.md for information on how to submit a pull request.

License

BSD, see LICENSE for details

For dependency licenses, see doc/dependencies.md

About

NodeJS client for Pivotal GemFire

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 51.6%
  • C++ 39.1%
  • Java 6.1%
  • Shell 2.2%
  • Other 1.0%