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

@menestrel/astro

v0.1.1

Published

Astro Content Layer loader and components for Menestrel: typed content collections, immutable snapshots, zero runtime requests

Readme

@menestrel/astro

Astro Content Layer loader and components for Menestrel, the CMS built for Astro sites. Your content collections stay typed, your site stays 100 % static, and a CMS outage can never break a build: content is served from immutable snapshots on a CDN.

Install

npm install @menestrel/astro

Requires Astro 6 or 7 (each new Astro major is supported within 14 days).

Loader

// src/content.config.ts
import { defineCollection } from 'astro:content';
import { menestrelLoader } from '@menestrel/astro';

export const collections = {
  services: defineCollection({
    loader: menestrelLoader({ collection: 'services' }),
  }),
};

The loader resolves content in this order:

  1. MENESTREL_OFFLINE=1: read the last snapshot pulled locally with menestrel pull (works with no network at all).
  2. MENESTREL_CONTENT_URL: read a published snapshot straight from the CDN. No token, no API call, builds keep passing even if the Menestrel app is down.
  3. MENESTREL_TOKEN: fetch the latest published snapshot through the API (also unlocks draft content for previews).

Entries are one per (entry, locale), with data.locale and data.translations for i18n routing. Zod schemas are built from your server-side schema definition, so getCollection() is fully typed. Incremental builds reuse the content layer cache via snapshot ids and digests.

Components

---
import RichText from '@menestrel/astro/components/RichText.astro';
import CmsImage from '@menestrel/astro/components/CmsImage.astro';
import CmsSeo from '@menestrel/astro/components/CmsSeo.astro';
---
  • RichText: renders Menestrel rich text (structured JSON, never stored HTML), with a component mapping for custom nodes.
  • CmsImage: signed imgproxy URLs, AVIF/WebP srcset, focal point, required alt.
  • CmsSeo: title, description, canonical and social tags from a SEO field.

Documentation

Full guides and reference (English and French): docs.menestrel.dev

License

MIT