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

svgripper

v1.0.0-alpha.2

Published

Huly® Platform™ — Development Tools and Libraries

Downloads

2

Readme

SVGRipper

SVRG Binary Format

SVGR binary format is a compact representation of SVG paths. It is designed to be used to limit resources usage (for example in embedded systems) or in regular websites / web applications for convenient SVG managmenet, such as icons and sprite libraries. The format uses variable bit-lenght and Huffman encoding of the path segments.

Constants

| Constant | Default Value | Description | | --------------------- | ------------- | --------------------------------------- | | MAX_ABSOLUTE_BITS | 13 | Maximum bits for absolute coordinates | | FREQUENCY_BITS | 5 | Number of bits for frequency table item |

Header

  • [x: MAX_ABSOLUTE_BITS, [y: MAX_ABSOLUTE_BITS] -- ViewBox
  • [bits: FREQUENCY_BITS] -- Number of bits in the frequency table item, 0 means no huffman encoding used
  • [symbols: MAX_ABSOLUTE_BITS] -- Number of symbols in the Huffman table
  • [frequency: bits]... -- frequency for each symbol in the table

Path Segments

  • 0 | 1 : 1bit -- 0 means MoveTo relative to previous segment's initial point, 1 means MoveTo absolute coordinates
    • If relative, then should fit Huffman encoding, otherwise absolute coordinates
    • [x: MAX_ABSOLUTE_BITS], [y: MAX_ABSOLUTE_BITS] -- MoveTo command [x, y], absolute coordinates

For each LineTo command:

  • [dx: HuffmanCode, dy: HuffmanCode]... -- Huffman encoding for path segments

End of path:

  • [0: HuffmanCode, 0: HuffmanCode] -- ClosePath command