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
- Host: GitHub
- URL: https://github.com/xtuc/hexdump-parser
- Owner: xtuc
- Created: 2019-03-28T18:35:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-28T18:37:13.000Z (over 7 years ago)
- Last Synced: 2025-03-17T11:52:46.185Z (over 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```