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

@goker/qr-code

v1.0.3

Published

Minimal SVG Output Library (Powered by qr-core)

Readme

@goker/qr-code

npm JSR license buy me a coffee github sponsor

Minimal SVG Output Library (Powered by qr-core)

Installation

npm install @goker/qr-code

JSR:

npx jsr add @goker/qr-code

Usage

1. Simple Encode & Render (Recommended)

Use toSvgString to encode text and get an SVG string in one step:

import { toSvgString } from "@goker/qr-code";

const svg = toSvgString("https://example.com", {
  // Encoding Options (passed to qr-core)
  ecc: "M",           // 'L', 'M', 'Q', 'H'
  version: "auto",    // 1-40 or 'auto'
  mask: "auto",       // 0-7 or 'auto'

  // Rendering Options
  render: {
    moduleSize: 10,   // px per module
    margin: 4,        // Modules of white space around
    darkColor: "#000000",
    lightColor: "#ffffff",
    viewBox: true,    // Include viewBox attribute
    cornerRadius: 2   // Round corners
  }
});

console.log(svg);
// Output: <svg ...>...</svg>

2. Advanced: Render Pre-Encoded Matrix

If you already have a qr-core object (or any compatible QrLike structure), you can use renderSvg directly. This is useful if you want to reuse the same calculated matrix for multiple outputs/formats.

import { encode } from "qr-core";
import { renderSvg } from "@goker/qr-code";

// 1. Encode separately
const qr = encode("https://example.com", { ecc: "H" });

// 2. Render
const svg = renderSvg(qr, {
  moduleSize: 4,
  darkColor: "#333",
  lightColor: "transparent", // Transparent background
  grouping: "dot",           // "dot", "row", "col", "blob", "45", "-45"
  moduleShape: "circle"      // "circle" or "square"
});

API Reference

toSvgString(input, options?)

Encodes input text and returns a complete SVG string.

  • input: string - The text to encode.
  • options: ToSvgStringOptions
    • All qr-core encoding options (ecc, version, mask, mode, strict, ...).
    • render: RenderSvgOptions (see below).

renderSvg(qr, options?)

Renders an existing QR matrix to an SVG string.

  • qr: QrLike object ({ size: number, matrix: { get(x,y): 0|1 } }).
  • options: RenderSvgOptions

RenderSvgOptions

| Option | Type | Default | Description | | :--- | :--- | :--- | :--- | | moduleSize | number | 4 | Pixel size of each module (must be integer > 0). | | margin | number | 4 | Quiet zone size in modules (0-64). | | darkColor | string | "#000" | CSS color for dark modules. | | lightColor | string | "transparent" | CSS color for background. | | xmlDeclaration | boolean | false | Prepend <?xml ...?> tag. | | viewBox | boolean | true | Include viewBox attribute on <svg>. | | crispEdges | boolean | true | Add shape-rendering="crispEdges". | | grouping | string | "row" | Grouping strategy: "row", "col", "dot", "blob", "45", "-45". | | moduleShape | "square" \| "circle" | "square" | Shape of individual modules. | | rotateDeg | number | 0 | Global rotation of the QR code in degrees. | | moduleRotationDeg | number | 0 | Rotation of individual square modules in degrees. | | cornerRadius | number | 0 | Radius for rounding corners of modules/paths. |

Contributing

Thanks for contributing! This project aims to stay lightweight, pure TypeScript, and easy to consume in both Node and browser runtimes.

Requirements

  • Node.js >= 18
  • npm

Setup

npm install

Development Commands

npm run build
npm test
npm run lint

Project Notes

  • Source lives in src/ and must remain framework-agnostic and runtime-neutral.
  • Public API is exported from src/index.ts.
  • Keep output deterministic; avoid adding non-deterministic rendering or environment-specific behavior.
  • Keep TypeScript strict compatibility.

Pull Requests

  • Prefer small, focused changes.
  • Update docs and tests if behavior changes.
  • Ensure npm test and npm run lint pass.

Status & Roadmap

The current implementation has some known deviations from the internal DIAMOND.md specification:

  1. Polygon vs Path: The library currently uses <path> elements for all rendering (including diagonal diamond shapes) instead of <polygon> elements. This is done to support corner rounding (filleting) via path commands (Q) directly.
  2. Trapezoid Shapes: The strictly defined "trapezoid" shapes for diagonal grouping are not implemented. The current renderer relies on rotated rectangles (parallelograms) and path unions.
  3. Optimization: Horizontal merging is primarily effective in grouping: "row" (default). Other grouping modes may produce more complex paths.

Testing

QR output is cross-checked against Nayuki's QR Code generator (typescript-javascript) to validate matrix correctness.

Demo

Live demo is available under demo/index.html.

Demo

Instructions:

npm install
npm run build
npx serve .

Then open http://localhost:3000/demo/ in your browser.

License

MIT