Comparing version 1.0.4 to 1.1.0
@@ -5,2 +5,3 @@ "use strict"; | ||
hex.ChunkedTransform = require('./chunked_hex_transform'); | ||
hex.Spy = require('./hex_spy'); | ||
@@ -7,0 +8,0 @@ module.exports = hex; |
{ | ||
"name": "hexer", | ||
"version": "1.0.4", | ||
"version": "1.1.0", | ||
"description": "Hex Dumper (streaming, sync, and cli)", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -18,2 +18,15 @@ # CLI Usage | ||
## Simply steram spy mode: in -> hex.Spy (->sink) -> out | ||
Want to see what's going through a stream? | ||
``` | ||
var hex = require('hexer'); | ||
stream | ||
.pipe(hex.Spy(process.stdout)) // argument is where to dump to | ||
.pipe(somewhere); // normal output flows through | ||
``` | ||
## Simple streaming mode: in -> hex.Transform -> out | ||
@@ -20,0 +33,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13204
12
229
90