byter

nodejs toBytes fromBytes conversion

Usage no npm install needed!

<script type="module">
  import byter from 'https://cdn.skypack.dev/byter';
</script>

README

Byter

Byte from/to conversion library for String, Int, Long Support joining bytes

Usage

Install npm install byter

Require byter = require 'byter'

String

byter.stringToBytes "test"
byter.bytesToString bytes

Long

byter.longToBytes "9223372036854775807"
byter.bytesToLong bytes

Int

byter.intToBytes 10
byter.intToBytes "10"
byter.bytesToInt bytes

Float

byter.floatToBytes 1.234
byter.floatToBytes "1.234"
byter.bytesToFloat bytes

Join bytes

a = byter.intToBytes 10
aa = byter.intToBytes "10"
byter.join a, aa, ...

Support for Hbase Phoenix v 3.0.0 data types

a = byter.phoenix.intToBytes 10
a = byter.phoenix.unsignedIntToBytes 10
a = byter.phoenix.longToBytes "-1387547769370"
a = byter.phoenix.dateToBytes "1387547769370" #micro timestamp
a = byter.phoenix.unsignedLongToBytes "1387547769370"
#write a to hbase