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 🙏

© 2026 – Pkg Stats / Ryan Hefner

svg-shape-to-path-pmb

v0.2.1

Published

Convert popular SVG shape tags (circle, ellipse, polygon, rect) to path tags.

Readme

svg-shape-to-path-pmb

Convert popular SVG shape tags (circle, ellipse, polygon, rect) to path tags.

API

This module exports one function:

shape2path(tag, attr)

tag should be a shape name as a string, ideally one of ['circle', 'ellipse', 'polygon', 'rect']. attr should be a dictionary object with the shape tag attributes.

For supported shapes, return a string representation of a <path> element. For all others, returns (attr['<>'] || ''), i.e. usually an empty string.

shape2path.xad(attr)

A convenience for users of the xmlattrdict module, equivalent to shape2path(attr[''], attr).

shape2path.supportedShapes

This is a dictionary object that holds the implementations for supported shapes:

  • circle({ cx, cy, r })
  • ellipse({ cx, cy, rx, ry })
  • polygon({ points })
  • rect({ x, y, widht, height })

shape2path.scaleOneSvgTag(how, attr[, tagName])

how must be an object with properties x and y, or it must be a number, in which case that number is used as x and y. Those are the scaling factors for the X axis and the Y axis. They are expected to be numbers. If both are equal to 1, the original attr is immediately returned.

Otherwise, returns out, which is a shallow copy of attr where numbers in supported attributes have been scaled on their respective axis.

Argument attr is expected as with shape2path, with the empty-named property (attr['']) set to the shape name (as would be returned by xmlattrdict). If the empty-named property is false-y, and tagName is a non-empty string, the latter will be used instead.

The empty-named property of the result (out['']) will be set to the resulting shape name, which may be different from the original tag name (e.g. 'circle'ellipse).

Numbers in the input are expected to be given without a unit suffix, i.e. in user units, which usually means pixels. Numbers in the result may have been rounded to whole user units.

Usage

see test/usage.mjs.

Known issues

  • Needs more/better tests and docs.

 

License

ISC