0.0.9 • Published 5 years ago

io-hbase v0.0.9

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

io-hbase

npm.io

REST API client for HBase.

Installing Dependencies

$ npm install io-hbase

Creating Instance

ES5

var Hbase = require('io-hbase');
var hbaseClient = Hbase.createClient({
    host: 'localhost',
    port: 8080
});

ES6 or above

import * as Hbase from 'io-hbase';

const hbaseClient = Hbase.createClient({
   host: 'localhost',
   port: 8080
})

Launch HBase using docker

$ docker run -d \
  -p 16010:16010 \
  -p 9095:9095 \
  -p 8080:8080 \
  -p 8085:8085 \
  dajobe/hbase 

Reference for Filter

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago