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

create-qloom

v0.1.0-beta.2

Published

The Qloom Vite plugin and project scaffolder (npm create qloom).

Readme

create-qloom

The Vite plugin that makes a Qloom app build, plus skills/schema installation and a planned project scaffolder. This is the build-time glue between an app and the framework packages.

The Vite plugin

qloomVitePlugin (imported from create-qloom/vite) does two build-time jobs by delegating to @qloom/compiler:

  • Compiles .tml imports into render programs — a .tml import becomes the export default function render(...) module the engine runs. No runtime template interpretation (PLAN §5).
  • Generates a typed API client from each dal/*.openapi.json contract into a gitignored .qloom/dal/ cache, exposed via the @dal/* import alias (mirror it in the app's tsconfig.json paths). Generated code is never committed — delete .qloom/ and it rebuilds. Apps re-export it through a small dal/*.ts wrapper, e.g. export { api as bookingApi } from "@dal/hotel-booking".
  • Runs a build-time event-handler check so a template referencing a missing handler fails the build.
// vite.config.ts
import { defineConfig } from "vite";
import { qloomVitePlugin } from "create-qloom/vite";

export default defineConfig({ plugins: [qloomVitePlugin()] });

Skills & schema installation

Thin wrappers over @qloom/skills:

  • installSkills(projectRoot?) — copy Qloom's authoring skills into a project's .agents/skills/ so an AI coding agent discovers them. Re-run after upgrading Qloom. (The qloom-skills sync CLI does the same from the shell.)
  • installSchema(projectRoot?) — copy the bundled Tapestry template schema into a project's schema/ so a .tml's xmlns:t declaration resolves locally.

Scaffolder — planned, not yet implemented

scaffold() is a stub that throws. It's gated on publishing the @qloom/* packages to npm (they are workspace:* today). Once built, it will write a new app's files (a Page, its template, index.html, a Vite config wired with the plugin) and run installSkills. Until then, use reference/hotel-booking/src/main.ts as the wiring template and npx qloom-skills sync for the authoring skills.

Build

Like @qloom/compiler, this package builds to dist (main/types./dist). Run pnpm build (tsc -b) after changing it. Depends on @qloom/compiler and @qloom/skills. See CLAUDE.md.