0.0.5 • Published 3 years ago

node-base92 v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

node-base92

Description

A C++ addon for nodejs supports base92 encoding and decoding.

Install

npm install -S node-base92

Usage

const fs = require('fs');
const {encode, decode} = require('node-base92');


// string
encode('Hello World') // should be ;K_$aOTbKnsM*k
// buffer
encode(fs.readFileSync('./inputFile'));
// string
decode(';K_$aOTbKnsM*k') // should be Hello World
// buffer
decode(fs.readFileSync('./inputFile'));

Thanks

thenoviceoof(https://github.com/thenoviceoof) wrote base92

License

MIT

0.0.5

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.4

3 years ago

0.0.1

3 years ago

0.0.1-alpha.1

3 years ago

0.0.1-alpha.0

3 years ago