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

@plutocms/pluto

v0.0.9

Published

The layerable CMS

Readme

Pluto CMS

A layer-based CMS powered by Nuxt.

[!WARNING] Pluto CMS is currently in alpha and at a very early stage. Expect breaking changes, incomplete features, and rough edges.

Also note: npm is still not supported due to layer dependencies not being installed correctly. It is strongly recommended to use modern package managers like pnpm or bun.

Pluto CMS is designed to be modular, extensible, and developer-friendly. Instead of a monolithic system, it lets you compose your CMS using layers. You only install what you need.

Features

  • Layer-based architecture using Nuxt Layers
  • Modern SSR + SPA hydration with Nuxt
  • TypeScript-first developer experience
  • Opt-in features instead of global plugin mutations
  • Deployment-friendly (Edge and Serverless ready)
  • Works as a full CMS or as a headless backend

Requirements

  • Node.js (22+) or Bun
  • pnpm or Bun

npm is not supported at this stage and may cause unexpected issues.

Getting started

Create a new Pluto project using the CLI:

npm create pluto@latest

# or
pnpm create pluto@latest

# or
bun create pluto@latest

This will launch an interactive setup wizard where you can:

  • Choose a database provider
  • Configure database credentials (all stored locally on your project's .env)
  • Select a starter template (blog, store, etc.)

Then:

cd your-project
bun install # or pnpm install
bun run dev # or pnpm dev

Architecture overview

Pluto CMS is built around layers, each responsible for a specific concern.

Core layer (@plutocms/pluto)

The core layer provides the foundation for your CMS:

  • <PlutoRoot>: Wraps your entire app (used in app.vue). Includes NuxtLayout, NuxtLoadingIndicator, and base styles.
  • <ColorModeButton>: Light/dark mode toggle with zero configuration.
  • Built-in auth and admin layouts
  • <PlutoNavbarAdmin> and <PlutoNavbarAdminActions> Provide structure for injecting actions from other layers

Backend layers

Backend layers handle data, authentication, and APIs.

Examples:

  • @plutocms/supabase Provides Supabase integration (database, auth, users, etc.)
  • Future possibilities:
    • Custom database providers (MySQL, MongoDB, etc.)
    • Other backend-as-a-service providers (Convex, Neon, Firebase, etc.)

Feature layers

Feature layers add domain-specific functionality on top of backend layers.

Examples:

  • @plutocms/supabase-shop Adds e-commerce features like:
    • Products
    • Media
    • Cart
  • Other possible layers:
    • Blog
    • Portfolio
    • Analytics
    • Payments

Feature layers depend on backend layers. For example, @plutocms/supabase-shop requires @plutocms/supabase.

Using Pluto in existing Nuxt projects

Pluto is not limited to new projects.

You can extend an existing Nuxt app using layers:

// nuxt.config.ts
export default defineNuxtConfig({
  extends: [
    '@plutocms/pluto'
    // Then add any backend or feature layers you need.
  ]
})

Dashboard & headless usage

Although Pluto is built on Nuxt, it is not limited to Nuxt-only consumption.

  • The admin dashboard can run as a standalone app on providers like Vercel or Netlify
  • Data can be consumed via:
    • Composables (within Nuxt apps)
    • REST APIs exposed by layers

This allows you to:

  • Use Pluto as a headless CMS
  • Power web apps (any stack)
  • Power mobile apps

Why not just WordPress?

  • Modern SSR and SPA hydration via Nuxt
  • TypeScript-first experience
  • Better control through Vue composables or REST APIs
  • Deployment flexibility (Vercel, Cloudflare, Netlify, etc.)

If you're a Vue developer, you'll feel right at home.

Roadmap ideas

  • More official backend layers
  • Rich ecosystem of feature layers
  • Better developer tooling and DX improvements
  • Community layers are very welcome! ❤️

License

MIT (planned)