Socket
Socket
Sign inDemoInstall

buffer-hexdump

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    buffer-hexdump

Buffer hexdump tool for browser and Node


Version published
Weekly downloads
1.6K
increased by20.19%
Maintainers
1
Install size
19.3 kB
Created
Weekly downloads
 

Readme

Source

SYNOPSIS

Buffer hexdump tool for browser and Node

USAGE

var dump = require('buffer-hexdump');

var buf = new Uint8Array([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18]);
console.log(dump(buf));
// 00000000: 0102 0304 0506 0708 090a 0b0c 0d0e 0f10  ................
// 00000010: 1112                                     ..

var nodeBuf = new Buffer('hello world 0123');
console.log(dump(nodeBuf));
// 00000000: 6865 6c6c 6f20 776f 726c 6420 3031 3233  hello world 0123

##LICENSE

Apache License, Version 2.0

Keywords

FAQs

Last updated on 11 Jul 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc