io-hbase

0.0.9 • Public • Published

io-hbase

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

/io-hbase/

    Package Sidebar

    Install

    npm i io-hbase

    Weekly Downloads

    5

    Version

    0.0.9

    License

    MIT

    Unpacked Size

    43.4 kB

    Total Files

    39

    Last publish

    Collaborators

    • gbchoi