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

@rubytech/create-maxy-lite

v0.1.39

Published

Install maxy-lite on an Android phone: orchestrates proot-distro Ubuntu, glibc Node, claude, the web-chat relay, the vault and its bind-mount — run via npx in bare Termux.

Downloads

4,944

Readme

@rubytech/create-maxy-lite

The maxy-lite installer: one command that puts the claude code binary on an Android phone, controlled from the phone browser. Run it in bare Termux; it orchestrates the whole on-device stack.

Install

# In Termux (from F-Droid):
pkg install -y nodejs
npx @rubytech/create-maxy-lite

The single npx does everything, idempotently:

  1. termux-deps — Termux packages (proot-distro) for the glibc layer
  2. proot — verify the proot-distro framework is operational
  3. ubuntu — install the glibc Ubuntu rootfs under proot
  4. node — pinned glibc Node inside Ubuntu (the bionic Node cannot run claude)
  5. toolchainpython3/make/g++ so node-pty compiles
  6. vault-bind — the shared-storage vault plus the proot bind so Obsidian and claude share one folder
  7. npm-app — pinned @anthropic-ai/claude-code and ttyd, the app (validator + web-chat relay), and the maxy-lite launcher

Re-running reconciles to the same state without duplicating anything. --dry-run prints the plan and pinned versions without touching the device.

Why a Node-only installer works in bare Termux

claude ships a glibc-only native binary, so the agent must run inside a proot-distro Ubuntu layer. But the installer is plain Node and runs fine on Termux's bionic Node, so there is no hosted shell script to maintain. A curl … | bash bootstrap exists only as a documented alternative (it just installs the Node prerequisite and calls this same package).

Layout

| Path | What | |---|---| | index.mjs | Entry: wires the real subprocess/fs/probe primitives and runs the orchestrator. | | lib/orchestrate.mjs | The guarded, idempotent step sequence. | | lib/healthcheck.mjs | The four post-install probes (claude, webchat, validator, vault). | | lib/pins.mjs, versions.json | Pinned Node major, claude-code and ttyd versions. | | lib/paths.mjs | On-device paths and the maxy-lite launcher. | | payload/ | Bundled app components (schema, validator, webchat), generated by npm run bundle. |

The payload/ directory is gitignored and rebuilt at publish time from the sibling maxy-lite component tree; edit the sources there, never the payload.

Observability

Every step emits one structured line so a failed install is diagnosable from its log:

[lite-install] op=step name=<…> ok=<bool> ms=<…>
[lite-install] op=versions node=<v> claude=<v> ttyd=<v>
[lite-install] op=healthcheck claude=<bool> webchat=<bool> validator=<bool> vault=<bool>
[lite-install] op=done ok=<bool> ranMs=<…>

A healthy run ends op=done ok=true. The first ok=false step is the failure point. Full operator instructions: maxy-code/.docs/maxy-lite-install.md.

Tests

npm test     # node --test over lib (log, pins, paths, healthcheck, orchestrate, bundle)

The validator probe runs the real bundled validator against an empty vault; the orchestrator tests assert the step order, the idempotency guards, and the structured-line output against a recording context.