hex-stream

0.1.2 • Public • Published

hex-stream

Simple hex encoder and decoder stream in node.js

Install

npm install hex-stream

Usage

A simple demo convert stdin to hex encoded string in data.txt:

const { HexEncoder, HexDecoder } = require('hex-stream');
const fs = require('fs');
const fsStream = fs.createWriteStream('./data.txt');
 
process.stdin
    .pipe(new HexEncoder())
    .pipe(fsStream);

Readme

Keywords

Package Sidebar

Install

npm i hex-stream

Weekly Downloads

1

Version

0.1.2

License

MIT

Unpacked Size

3.47 kB

Total Files

6

Last publish

Collaborators

  • dcsunset