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

@maxal_studio/kratosjs

v2.0.0

Published

KratosJs - A powerful admin panel builder for Node.js.

Readme

KratosJs

Admin panels, forged in TypeScript.

A powerful, opinionated framework for building Node.js backend admin panels with React frontends. Define resources, forms, and tables once — render them everywhere.

What is KratosJs?

KratosJs lets you describe your data model once with a fluent TypeScript API. From that single description the framework produces:

  • A fully functional REST API (list, create, read, update, delete, bulk actions)
  • A React admin panel that renders forms and tables from the server-side schema — no hand-written CRUD screens
  • Server-side validation using the same engine the frontend uses, so rules can never be bypassed via direct API calls
// One resource definition drives the API and the admin UI
export class UserResource extends BaseResource {
	static schema() {
		return this.make()
			.table(
				Table.make().columns([
					TextColumn.make('name').label('Name').searchable().sortable(),
					TextColumn.make('email').label('Email').searchable(),
				]),
			)
			.form(
				FormBuilder.make().schema([
					TextInput.make('name').label('Name').required(),
					TextInput.make('email').label('Email').required().email(),
					TextInput.make('password').label('Password').password().min(8),
				]),
			);
	}
}

Dashboard

Orders

Features

| Feature | Description | | -------------------------------- | ----------------------------------------------------------------------------------------------------------------- | | Fluent TypeScript API | Define resources, forms, and tables with a clean, chainable API. Full autocompletion and compile-time safety. | | React Frontend | The @maxal_studio/kratosjs-react package renders backend-defined schemas dynamically. | | MikroORM Support | One adapter for MySQL, PostgreSQL, SQLite, MariaDB, and MongoDB. Swap databases without rewriting your resources. | | Authentication & Permissions | Built-in email auth, OAuth, and granular access control. Protect resources and actions with declarative policies. | | Shared Validation Engine | Rules declared on fields run on both client and server with the same isomorphic engine — no drift, no bypass. | | Plugin System | Extend with plugins that register entities, migrations, resources, pages, routes, and lifecycle hooks. | | Media Management | Integrated file uploads with local and S3 storage backends. Attach media to any resource field. |

Quick Start

Scaffold a full app in one command:

npx @maxal_studio/kratosjs-cli new

The wizard asks for a project name and database driver (MySQL, PostgreSQL, SQLite, MariaDB, or MongoDB), then generates a ready-to-run app:

cd my-app
cp .env.example .env   # set your database credentials
npm run dev

Open the printed URL and sign in with [email protected] / password (seeded on first boot).

Packages

| Package | Description | | ------------------------------ | ------------------------------------------------------------------------------------------------------ | | @maxal_studio/kratosjs | Core framework — resources, form builder, table builder, validation engine, ORM adapter, auth | | @maxal_studio/kratosjs-react | React rendering layer — AdminPanel, FormRenderer, TableRenderer, all field and column components | | @maxal_studio/kratosjs-cli | Project scaffolding CLI | | @maxal_studio/kratosjs-skill | AI coding-assistant skill that teaches Claude Code, Cursor, Copilot, Codex & more to build panels |

Build with AI

Prefer to describe what you want instead of writing every resource by hand? Install the KratosJs Agent Skill into your AI coding assistant, then just ask it to generate panels — "add a Product resource with a relation to Brand, a stats widget, and an activate bulk action" — and it will follow the framework's real, current conventions (forms, tables, hooks, actions, widgets, relations, media, auth) instead of guessing.

# Installs to Claude Code (.claude/skills) and the universal .agents/skills location
npx @maxal_studio/kratosjs-skill

It's built on the open Agent Skills standard, so one install works across 40+ tools — Claude Code, Cursor, VS Code / GitHub Copilot, OpenAI Codex, Gemini CLI, and more. See the package README for per-tool install commands.

Demo

A working demo is available at demo.kratosjs.com.

Documentation

Full documentation is available at docs.kratosjs.com.

Topics covered: Getting Started · Resources · Form Fields · Table Columns · Authentication · Pages · Media · Plugin System · Creating Plugins · Custom Fields · Custom Columns

License

ISC