惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

G
Google Developers Blog
D
Docker
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
M
MIT News - Artificial intelligence
H
Help Net Security
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
L
LangChain Blog
MongoDB | Blog
MongoDB | Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
博客园 - 司徒正美
C
Check Point Blog
B
Blog
Y
Y Combinator Blog
Microsoft Azure Blog
Microsoft Azure Blog
P
Proofpoint News Feed
F
Fortinet All Blogs
美团技术团队
D
DataBreaches.Net

Show HN

GitHub - astefanutti/shaderbang: Shebang for Shaders Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap
Next.js Boilerplate for Internal Tools · CoreUI
mrholek · 2026-05-27 · via Show HN

Built with

Next.js 16

React Logo

React 19

TypeScript

Better Auth

Drizzle ORM

PostgreSQL

CoreUI PRO

Claude

Claude

Codex

Codex

The problem

01

Every new project starts the same way: two weeks wiring up auth, sessions, user management, and permissions before you write a single line of business logic.

02

You copy-paste from your last project. The auth is outdated, the UI is inconsistent, the database schema doesn't quite fit. You spend more time patching than building.

03

AI assistants generate code into an empty repo and invent their own patterns each time — different folder structures, different auth approaches, different UI components. Nothing is cohesive.

04

You end up shipping something that works today but fights you tomorrow. No audit trail, no job monitoring, no clear architecture for the next developer (or AI) to follow.

The solution

Skip the scaffolding.
Start with a working app.

CoreUI Next.js Boilerplate is not a starter template — it's a working application with real authentication, user administration, role-based access control, audit logging, and background jobs already built and connected. You get a documented, modular architecture that both humans and AI assistants can extend predictably from day one.

Running in 5 minutes

Clone, npm install, set your database URL, run db:push and db:seed. You have a full admin app with demo data before your coffee gets cold.

🔐

Complete auth system

Login, registration, email verification, password reset, session management, rate limiting, and disabled-user blocking — all wired up with Better Auth. Not a TODO, not a stub.

👥

User management built in

Create, edit, disable, and manage users. Revoke sessions, resend verification emails, force password resets. The admin panel every internal tool needs — already done.

🛡️

Roles, permissions, audit trail

Three-tier RBAC (user, admin, super_admin) with granular feature permissions. Every sensitive action is logged with actor, target, and timestamp. Compliance-ready from the start.

🤖

Fewer AI hallucinations

CoreUI components are well-represented in LLM training data. AI assistants generate correct CSmartTable, CFormInput, and CModal code instead of hallucinating nonexistent APIs. Documented module boundaries and consistent CRUD patterns keep every AI session on track.

Accessibility handled

CoreUI PRO components ship with ARIA attributes, keyboard navigation, focus management, and semantic HTML built in. You get accessible admin UI without auditing every element yourself — 80+ components, one cohesive design system.

See it in action

15 minutes from clone
to your first feature.

Watch the setup, then watch a complete CRUD module built from scratch — list, create, edit, delete, validation, permissions. That's what you can ship in your first session with this boilerplate.

Part 1 — 4 min

Clone, configure, run

Part 2 — 11 min

Full CRUD module in one session

What's inside

  • Next.js 16 + React 19 + TypeScript — latest App Router with server components, server actions, and streaming
  • Complete auth system — login, register, email verification, password reset, session handling, rate limiting, disabled-user blocking
  • Drizzle ORM + PostgreSQL — type-safe queries, split schema files, seed data, Drizzle Studio support
  • CoreUI React PRO components — CSmartTable, forms, modals, charts, sidebar, dark mode — one cohesive design system
  • Full user administration — create, edit, disable/enable, revoke sessions, resend verification, force password reset
  • Three-tier RBAC — user, admin, super_admin roles with 10+ granular feature permissions enforced server-side
  • Audit log system — every admin action tracked with actor, action type, and timestamp. Filterable by action, actor, and date range
  • Background jobs — PostgreSQL-backed job queue with retry, cancel, exponential backoff, and a monitoring dashboard
  • Email infrastructure — verification, password reset, and welcome emails via Console, SMTP, or Resend. Swap providers with one env variable
  • File storage — avatar uploads with local filesystem or S3-compatible storage. Provider-agnostic abstraction built in
  • Domain-module architecture — documented module structure with queries, commands, events, and handlers. New features follow a proven pattern
  • AI agent docs included — AGENTS.md, ARCHITECTURE.md, and DEVELOPMENT.md give Cursor, Claude Code, and Copilot the context to generate consistent code

Who this is for

Developers and teams building internal tools, admin panels, or backoffice apps who don't want to spend the first two weeks on authentication, user management, and infrastructure plumbing.

AI-native teams using Cursor, Claude Code, or Copilot who need a structured codebase their AI tools can extend reliably — not an empty repo where every AI session invents a new architecture.

Freelancers and agencies delivering client projects who need a proven, professional foundation they can customize per client instead of rebuilding the same admin boilerplate on every engagement.

What you save

2-3 weeks of setup work — auth, users, permissions, audit logs, email, storage, admin UI, and dark mode are already connected and working.

Dozens of architecture decisions — folder structure, auth strategy, RBAC model, validation approach, CRUD patterns, and state management are already made and documented.

Ongoing maintenance burden — 12 months of updates keep your foundation current with Next.js, React, and Better Auth releases.

Pricing

Starter

Full source code for one project. Auth, users, RBAC, audit logs, jobs, email, storage, and CoreUI PRO admin UI — ready to extend.

  • Complete source code — no black boxes, no vendor lock-in
  • Next.js 16 + React 19 + TypeScript + Drizzle ORM + PostgreSQL
  • Better Auth with sessions, email verification, and password reset
  • User admin, RBAC, audit logs, background jobs, and email
  • CoreUI React PRO components and responsive admin shell
  • 12 months of updates and email support
  • License for 1 project or product

$499

$249

one-time payment,

one project / product

Buy now — $249

Unlimited

Everything in Starter, for every project in your company. Use it across all teams, all clients, all products — no limits.

  • Everything in the Starter license
  • Unlimited projects — internal tools, client work, SaaS products
  • Use across your entire team or organization
  • No per-seat, per-project, or per-deployment restrictions
  • 12 months of updates and email support
  • Best value for agencies and multi-product teams

$1699

$849

one-time payment,

unlimited projects for one company

Buy now — $849

Early access pricing — price increases after the first 100 licenses.

14-day money back guarantee. No questions asked. One-time payment — no subscriptions, no recurring fees.

Trusted by millions

Since 2013, CoreUI has been trusted by developers at the world's smartest companies

Questions

How is this different from a Next.js starter template?

Starter templates give you a folder structure and maybe a login page. This boilerplate gives you a working application — complete auth flows, user administration with 7 admin actions, audit logging, background jobs with retry logic, email delivery, file storage, and RBAC. The infrastructure layer that usually takes 2-3 weeks is already built and tested.

What AI tools does this work with?

Cursor, Claude Code, GitHub Copilot, and similar coding assistants. The repo includes AGENTS.md, ARCHITECTURE.md, and DEVELOPMENT.md specifically written for AI context. Module boundaries, naming conventions, and CRUD patterns are consistent so AI-generated code fits the existing codebase instead of inventing new patterns.

What database and hosting providers does it work with?

PostgreSQL via Drizzle ORM. Works with local Postgres, Supabase, Railway, Neon, and any hosted Postgres provider. Email delivery supports Console (local dev), SMTP, and Resend. File storage supports local filesystem and any S3-compatible service. Deploy anywhere Next.js runs — Vercel, Railway, Docker, self-hosted.

Do I need to be a frontend specialist?

No. The admin shell, sidebar navigation, dark mode, responsive layout, and all CoreUI PRO components are already configured. If you can write React components, you can add features. The documented CRUD pattern (server page → client view → server action) makes it straightforward to add new screens.

What does "early access" mean?

Early access buyers get the lowest price the boilerplate will ever have. You also get direct input on what gets built next — the roadmap includes features like OAuth providers, settings screens, and more documented CRUD examples, and early buyers help prioritize what ships first.

Can I use this for client projects?

Yes. The Starter license covers one project — internal tool, client project, or SaaS product. The Unlimited license covers every project in your company with no restrictions on teams, clients, or deployments.

Can I modify the code freely?

You get the complete source code with no obfuscation, no vendor lock-in, and no runtime dependencies on CoreUI services. Fork it, customize it, deploy it — it's your codebase. The only restriction is redistribution of the boilerplate itself.

What if it doesn't work for me?

14-day money back guarantee, no questions asked. If the boilerplate isn't right for your situation, you get a full refund.