An open API service indexing awesome lists of open source software.

https://github.com/xtuc/hexdump-parser

Parses hexdump(1) output
https://github.com/xtuc/hexdump-parser

Last synced: over 1 year ago
JSON representation

Parses hexdump(1) output

Awesome Lists containing this project

README

          

# hexdump-parser

> Parses hexdump(1) output

## Install

Using npm:

```sh
npm install --save hexdump-parser
```

or using yarn:

```sh
yarn add hexdump-parser
```

## Usage

cli:
```sh
hexdump -C FILE | hexdump-to-json
```

or api:
```js
const lib = require("hexdump-parser");
const arr: Uint8Array = lib.parse(input);
```