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

@odla-ai/blog

v0.0.7

Published

Minimal-dependency, static-first blogging platform. Files in, site out; odla-db lights up interactivity when configured.

Downloads

911

Readme

@odla-ai/blog

⚠️ Early access — pre-1.0. Agents work from bounded runbooks; humans approve credentials, production changes, releases, and merges. APIs and exact package availability can change. Review the documented guarantees and limitations; this software is MIT-licensed and provided without warranty.

Minimal-dependency, static-first blogging platform. A site is a directory of markdown plus one JSON config; build() emits a fully static site that works on GitHub Pages or Cloudflare. When odla-db is configured, interactive features (sign-in, comments, likes) light up as a progressive layer — the static site never depends on it.

Three runtime dependencies, each with zero dependencies of its own: marked (markdown), yaml (frontmatter), highlight.js (build-time syntax highlighting — no client JS ships).

Site layout

my-blog/
├── blog.config.json     # the only config
├── posts/2026/2026-07-03-hello.md
├── pages/about.md
├── public/              # copied verbatim
└── theme/               # optional file-by-file overrides of the chosen theme

Frontmatter: title and date required; description, tags, draft, image optional. draft: true or a future date keeps a post out of the build.

Themes

Four bundled themes, all with light + dark modes (system preference + ☾/☀ toggle):

  • juniper (default) — quiet long-form reading; Lora serif, violet/lavender
  • salt — warm cream editorial; Cormorant Garamond, moss/rust/teal
  • chalk — chalkboard on graph paper; copper/cerulean, mono chrome
  • clay — sand paper and terracotta; system fonts only, zero external requests

Pick one with "theme": "salt" in blog.config.json. Themes ship in the @odla-ai/ui dependency (the odla design system); every built site also gets ui's class-scoped component layer (assets/odla-ui.css — buttons, form fields, cards, …) theme-matched via the theme's ui.css token aliases. Override any theme file by placing a same-named file in your site's theme/ directory. Build your site with the package API and preview the emitted static directory with your usual local static server.

Input boundaries

Footnote identifiers are capped at 256 characters, and malformed [^ introducers are handled by a monotonic scanner so adversarial Markdown cannot force repeated whole-suffix regex scans. Markdown still permits authored raw HTML by design; it is not a sanitizer. JS pages and collection templates must use escapeHtml(String(value)) for every schema-free frontmatter value or filename-derived slug placed into HTML.

Deploy (Cloudflare)

build() emits a plain static directory; serve it from a Worker assets binding — { "assets": { "directory": "./dist-site" } } in wrangler.jsonc, build before every deploy. Add a main worker script only when you want /api/* routes next to the static site; the public platform manual describes how to combine the assets binding with odla-db and o11y.

Status

Early. The build pipeline and themes work; CLI (init/new/dev/check), feeds, search, deploy scaffolding, and the odla-db islands are in progress. Track supported behavior in this installed README and the public package docs at https://odla.ai/docs/packages/blog rather than relying on internal planning files.