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

@ory-cms/cli

v0.1.3

Published

OryCMS command-line interface — initialise, configure, migrate, and seed OryCMS in any Next.js project

Readme

@ory-cms/cli

Official command-line interface for OryCMS — the headless CMS built for Next.js.

Features

  • init — scaffold OryCMS into an existing Next.js App Router project with an interactive setup wizard
  • plugin — install, uninstall, update, enable, disable, and list OryCMS plugins
  • config — initialise and inspect your orycms.config.ts file
  • Supports PostgreSQL, Neon, Supabase, MySQL, MariaDB, MongoDB, SQLite, and Firebase
  • Detects your package manager (npm / pnpm / yarn / bun) automatically

Requirements

  • Node.js >= 18
  • A Next.js project using the App Router
  • @ory-cms/core installed in your project (see below)

Installation

npm install -g @ory-cms/cli

Or run directly without installing:

npx @ory-cms/cli init

Important: @ory-cms/cli is the scaffolding and management tool. It does not include the OryCMS runtime. Your project also needs @ory-cms/core and @ory-cms/next to function. Install them before or immediately after running orycms init:

npm install @ory-cms/core @ory-cms/next

Quick Start

Inside an existing Next.js project:

# 1. Install the runtime packages first
npm install @ory-cms/core @ory-cms/next

# 2. Run the CLI wizard
npx @ory-cms/cli init

The wizard will:

  1. Detect your Next.js version and App Router
  2. Prompt for database provider and connection string
  3. Generate orycms.config.ts, admin route, .env.example, and update tsconfig.json
  4. Print the exact npm install command for any additional dependencies (db drivers, auth, plugins)

Commands

orycms init

Initialise OryCMS in an existing Next.js App Router project.

orycms init [--cwd <path>]

| Option | Description | |--------|-------------| | --cwd <path> | Target directory (defaults to process.cwd()) |

orycms plugin

Manage OryCMS plugins.

orycms plugin install <package>
orycms plugin uninstall <package>
orycms plugin update <package>
orycms plugin list
orycms plugin enable <name>
orycms plugin disable <name>

orycms config

Manage OryCMS configuration.

orycms config show          # Print resolved config
orycms config init          # Re-generate orycms.config.ts

Examples

# Initialise in current directory
orycms init

# Initialise in a specific directory
orycms init --cwd ./my-nextjs-app

# Install a plugin
orycms plugin install @ory-cms/plugin-seo

# View current config
orycms config show

Links

  • GitHub: https://github.com/orynticlabs/orycms
  • Documentation: https://github.com/orynticlabs/orycms#readme
  • Issues: https://github.com/orynticlabs/orycms/issues
  • npm: https://www.npmjs.com/package/@ory-cms/cli