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

@wojciechpiskorz/astroix

v0.0.31

Published

Dev-only Astro 7 integration — a visual builder for Content Collections content and repo-mapped CSS

Readme

Astroix

A standalone Electron parent app for Astro projects. An AI agent does ~90% of the work; Astroix finishes the last 10% — content tweaks and CSS polish — in a GUI instead of hunting through an unfamiliar codebase. You register an existing project, Astroix runs that project's own dev server under its supervision, renders the live site in a same-origin canvas, and edits the project's real files.

Zero injection: no Astroix package, integration, bridge, config mutation, or control file ever enters your project — only the explicit Content and CSS edits you make through the app.

Status: Electron rewrite in progress (pre-alpha). The former public npm integration is retired by design (ADR-0010); npm publication is paused. Delivery will be an unsigned, ad-hoc-sealed macOS (Apple Silicon) Electron pre-alpha for inner testers (ADR-0008). Docs are the source of truth.

What it does

  • Content vertical — edit Astro Content Collections through forms generated from zod schemas; markdown body editing; auto-write (~300 ms debounce) to real .md files; inline validation that never blocks a draft.
  • CSS vertical — click any element on the live canvas, see which repo rules style it and where they live in your repo (file + line, cascade winner marked), edit them in place (declaration widgets or raw CSS), and get minimal-diff writes back to the source files with live HMR. Bidirectional sync with your IDE; element selection survives reindex.

Core principle: repo-mapping, not a parallel world — the app reads and writes the same files an agent would, so the repo stays coherent for both humans and AI.

One active project session at a time; switching is transactional and never mixes projects' data. Web mode (the same control plane without Electron) is the deterministic behavioral test host.

Docs

  • docs/spec.md — product spec: boundary, user stories, implementation decisions, testing doctrine
  • docs/stack.md — technology stack and the reasoning behind each choice
  • docs/core-reuse.md — Astro/Vite seams by class: public / certified exact-pair / fail-closed private
  • CONTEXT.md — domain glossary (ubiquitous language)
  • docs/adr/ — architecture decision records (0004–0010 govern the rewrite)

Scope

Certified against exact Astro/Vite pairs (first: [email protected] + [email protected], resolved from each project's own installation); macOS 13.5+ on Apple Silicon; desktop UI only. No project scaffolding, no multi-project editing, no signing/notarization/auto-update in the pre-alpha.

Development

The repository is mid-migration to npm workspaces + Node 24 (chartered, ADR-0010); until that lane lands, the checkout still runs on bun and still contains the integration-era code as a retirement-bound migration oracle.

bun install                        # also in e2e/fixture/
bun run check && bun run typecheck # Biome + tsc
bun run test                       # vitest (unit)
bun run test:e2e                   # Playwright (integration-era oracle lanes)

Target workspace shape: packages/core, packages/protocol, packages/runtime, packages/app-shell, apps/web, apps/desktop, with e2e/fixture a plain Astro project. See docs/stack.md and AGENTS.md.

License

MIT