Socket
Socket
Sign inDemoInstall

hexdump-nodejs

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hexdump-nodejs

Hexdump an ArrayBuffer to a String (NodeJS)


Version published
Maintainers
1
Install size
4.26 kB
Created

Readme

Source

hexdump-js

Hexdump an ArrayBuffer to a String (NodeJS)


Install

npm install hexdump-nodejs

###Usage

var hexdump = require('hexdump-nodejs');
var buffer = new Buffer(0x60);

buffer.writeUInt16BE(0xaaaa, 0);
buffer.writeUInt32BE(0x12345678, 0x40);
buffer.writeUInt32BE(0xffffbbbb, 0x50);
buffer.write('The quick brown fox jumps over the lazy dog!', 0x10);

console.log(hexdump(buffer));

This outputs the following to the console:

  Offset  00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
00000000  AA AA 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ªª..............
00000010  54 68 65 20 71 75 69 63 6B 20 62 72 6F 77 6E 20  The quick brown
00000020  66 6F 78 20 6A 75 6D 70 73 20 6F 76 65 72 20 74  fox jumps over t
00000030  68 65 20 6C 61 7A 79 20 64 6F 67 21 00 00 00 00  he lazy dog!....
00000040  12 34 56 78 00 00 00 00 00 00 00 00 00 00 00 00  .4Vx............
00000050  FF FF BB BB 00 00 00 00 00 00 00 00 00 00 00 00  ÿÿ»»............

Keywords

FAQs

Last updated on 27 Apr 2014

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