npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bitinfo

v0.1.1

Published

A graphic generator to help describe bitmaps

Downloads

2

Readme

bitInfo

BitInfo will read a bitmap description and generate a SVG image to it.

It was designed specially to integrate with Markdown Preview Enhanced and its Code chunk feature.

Install

Easy way is to install it globally:

npm i -g bitinfo

Usage

Markdown Preview Enhanced integrates lots of diagram generator. Since bitInfo is not one of them we must use code chunk feature to include it.

Simple add a fenced block and add a call to the bitinfo (change its path if not globally installed):

```bitinfo {cmd="bitinfo", args=["-i"] output="html" hide}
size 16
15 response =x "this is a response" #fdd
14..13 Func1,Func2 =00
highlight 14..13 "function selector"
7..0 =xxxxx10x
highlight 7..0 #88f "message ID"
10 Unicast
```

Then use any of commands Run Code Chunk or Run All Code Chunk to generate diagrams.

example1

bitInfo description tags

| tag | function | default | | ------------------------------------------------- | ---------------------------------------- | ------- | | scale <num> | diagram scale | 1 | | size <range> | registry size | 15..0 | | bitGap <num> | space between bits | 3 | | nibbleGap <num> | extra space between nibbles | 0 | | byteGap <num> | extra space between bytes | 6 | | vertical | TODO | | | default <value> | default value for non declared bits | | | background <color> | can you guess? | white | | highlight <range> [color] ["legend"] | set color and legend for a range of bits | | | <range> [:names] [=values] ["descr"] [color] | define a bit range | |

| type | pattern example | | ----- | ----------------------------------------------- | | range | 1..16 or 15..0 (both ends are inclusive) | | range | 24 (simplified form of 23..0) | | num | integer or float | | value | [01X?CZ] | | color | #123 or orange (any css color can be named) |