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

helixasm

v1.3.1

Published

A command-line compiler for the Helix Assembly Language.

Readme

Helix Assembler (hlxc)

A command-line compiler for the Helix Assembly Language.

The Helix Assembly Language is an assembly language designed to create flashable ROM's for my 8bit Minecraft Computer.

This tool reads .hlm source files, tokenizes them, parses instructions, and generates output schematics for loading into the in-game ROM Flasher

hlxc is built using:

For now, please see asm.js & cpu.js for language/cpu definitions.

CLI Showcase

See HelixWeb for a live example.

Features

  • Tokenizer, parser, and code generator
  • Inline expressions via the @expr macro
  • Convenient jumps via the @label macro
  • Output compiled HSM assembly into a game ready SpongeV2 Schematic
  • CLI interface powered by citty and consol

Installation

git clone https://github.com/NullRoz007/helixasm.git

cd helixasm

npm install

Usage

Example Program

@label blink;
LD :1 @expr 30 + 1;
LD #110 :1
LD :1 1
LD #108 :1
LD :1 0
LD #108 :1
JP @label blink;

To compile the above program into a schematic that can be loaded into Minecraft:

hlxc BlinkPixel.hsm output --schem

This will produce the following schematic that can be loaded into the in-game ROM Flasher: Rom Image

For convenience, the ROM Flasher schematic is provided in /src/lib/schematics/Base32Rig.schem Currently, the compiler only supports programs with 32 instructions or less, however longer Base ROM schematics can be created using easily using WorldEdit and the --schemToJson argument (outlined below).

Development

Run tests

npm test

Bundle the CLI

Creates a bundled CommonJS file at build/hlxc.bundle.cjs:

npm run bundle

Generate a Base ROM

Dumps a JSON string that can be saved and imported into HLXC

./src/cli.js input.schem --schemToJson

Build Standalone Executable (Node SEA)

This process:

  • Runs tests

  • Bundles the CLI

  • Makes a copy of the node binary on your system

  • Injects the SEA blob into the Node executable

Run:

npm run build

The output binary is located in:

dist/hlxc

Run it directly:

./dist/hlxc input.hsm output.bin