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-filo-cms

v0.3.2

Published

Scaffold a self-hosted Filo CMS project with one command: npm create filo-cms@latest

Downloads

34

Readme

create-filo-cms

Scaffold a self-hosted Filo CMS project with one command — the way create-strapi-app works, but for Filo.

npm create filo-cms@latest my-app
# or: pnpm create filo-cms my-app / yarn create filo-cms my-app / npx create-filo-cms my-app

The wizard asks about your database (an existing DATABASE_URL or a generated docker-compose.yml with PostgreSQL 17) and your admin e-mail, then:

  • generates a minimal Nuxt project that inherits the whole CMS from the @filo-cms/cms layer,
  • writes .env with cryptographically random secrets (NUXT_SESSION_PASSWORD, NUXT_ENCRYPTION_KEY) and admin credentials,
  • includes an example custom API endpoint and middleware to start from,
  • installs dependencies with your package manager (npm / pnpm / yarn / bun — auto-detected).

Then:

cd my-app
docker compose up -d   # if you chose the generated Postgres
npm run dev

On first boot the CMS migrates and seeds the database automatically and creates your admin account. Log in at http://localhost:3000/admin.

Non-interactive mode (CI, scripts)

npx create-filo-cms my-app \
  --db docker                 # or: --database-url postgres://user:pass@host:5432/db
  --email [email protected] \
  --no-install                # or --install

What's generated

my-app/
├── nuxt.config.ts            # extends: ["@filo-cms/cms"] — the whole CMS comes from the layer
├── server/
│   ├── api/hello.get.ts      # example custom endpoint  → GET /api/hello
│   └── middleware/request-logger.ts
├── .env                      # secrets (never commit)
├── .env.example
├── docker-compose.yml        # optional PostgreSQL 17
└── README.md                 # how to run, extend and consume the API

Updating the CMS later = bumping the @filo-cms/cms version in package.json.

Requirements

  • Node.js >= 22
  • A PostgreSQL database (or Docker for the generated one)

Links