Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hexer

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexer - npm Package Compare versions

Comparing version 1.0.4 to 1.1.0

hex_spy.js

1

index.js

@@ -5,2 +5,3 @@ "use strict";

hex.ChunkedTransform = require('./chunked_hex_transform');
hex.Spy = require('./hex_spy');

@@ -7,0 +8,0 @@ module.exports = hex;

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc