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 🙏

© 2025 – Pkg Stats / Ryan Hefner

iconscript

v0.1.0

Published

iconscript, a language for generating SVG icons

Downloads

112

Readme

iconscript

iconscript is a pretty simple language for describing simple pixel-wise pictograms in the style of the Röntgen project.

The grammar of the language is described in the ANTLR4 grammar/IconScript.g4 file.

Installation

Install dependencies:

npm install

Development Setup

Generate grammar files:

npm run generate:grammar

Build all components (library, CLI, and web bundles):

npm run build

Build individually:

  • npm run generate:grammar — generate grammar files,
  • npm run build:lib — build TypeScript library,
  • npm run build:cli — build CLI tool,
  • npm run build:parser:min — build parser bundle for web,
  • npm run build:ui:min — build UI bundle for web.

Usage

Command-Line Interface

npm run generate $INPUT_ICONSCRIPT_FILE $OUTPUT_DIR

Web Interface

  1. Build the web bundles (if not already built):
npm run build:parser:min
npm run build:ui:min
  1. Start a local server (e.g., using live-server):
npm install -g live-server
live-server web

Or use any other static file server pointing to the web/ directory.

Syntax

Global context

  • width — stroke width.
  • position — current position of the cursor.

Commands

<position> is 2D coordinates in the form <x>,<y> or +<x>,<y> (+ means that the position is relative to the position).

| Context command | Description | |-----------------|-----------------------------| | r | Set removing mode | | w <float> | Set width to a value | | p <position> | Set position to a value |

| Action command | Description | |---|---| | l [<position>] | Draw lines between positions | | lf [<position>] | Draw filled lines between positions | | c <position> <float> | Draw circle specified by center point and radius | | s <position> <position> | Draw rectangle specified by top left and bottom right points | | a <position> <float> <float> <float> | Draw arc specified by center point, radius, and two angles in radians |

Variables

Variables can be defined with <variable> = [<command>] and accessed with @<variable>.

Scopes

Scopes group commands together using { and }. They can be nested and are used to incapsulate context changes.

Example

square = lf +0,0 +2,0 +0,2 +-2,0 +0,-2
icon glider = {
    p 6,2   @square p +4,4 @square
    p +-8,4 @square p +4,0 @square p +4,0 @square
}

This code defines a square (lf, filled line — polygon with 5 points). It then reuses square variable 5 times to draw a glider.