Socket
Socket
Sign inDemoInstall

hex_color_displayer

Package Overview
Dependencies
287
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hex_color_displayer

Define chunks of data within a binary file with name and color


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Hex Color Display

All Contributors

pr

NPM package to help you read a binary file with a structured format. On hover mouse the block is highlighted and a tooltip is popped up to explain each section.

Example:

import React from 'react';
import HexColorDisplay from 'hex_color_displayer'

const data_example = [
    {
        "start": 0,
        "end": 13,
        "name": "Header",
        "color": "", // Color feature has not yet implemented
        "sublist": []
    },
    {
        "start": 13,
        "end": 32,
        "name": "data",
        "color": "", 
        "sublist": []
    },
]

const raw = [97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
		107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
		118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128]
React.render(<HexColorDisplay 
        offsets={data_example} bin={raw} />, document.body);

Storybook example

In storybook I added an example you can use to see how it works and debug this package.

Contributing

The contributing guidelines are here

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Arad Bivas

💻

avi vovgen

💻

Tom

💻

Tamir Abutbul

💻

Artem Elgadzhiev

💻

Elad Motzny

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

FAQs

Last updated on 24 Sep 2022

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