App Router, Server Components & more

DevConsole for Next.js Developers

Debug your Next.js app without leaving your app. Test API routes, manage auth sessions, and inspect server/client state in one place.

Built for Next.js Developers

Everything you need to debug and develop faster.

Server/Client State

Debug both server components and client-side state in one unified view.

API Route Testing

Test your Next.js API routes with inherited auth. No manual header setup.

Auth Flow Debugging

Skip NextAuth flows, toggle sessions, test protected routes instantly.

State Comparison

Compare server and client state to identify hydration issues faster.

Feature Flags

Toggle feature flags and configuration overrides instantly.

Network Intelligence

Inspect, replay, and debug API requests with full context.

Easy Integration

app/layout.tsx
import { DevConsole } from 'devconsole-package';

export default function RootLayout({ children }) {
  return (
    <html>
      <body>
        {children}
        {process.env.NODE_ENV === 'development' && (
          <DevConsole />
        )}
      </body>
    </html>
  );
}

That's it. DevConsole is automatically excluded from production builds.

Frequently Asked Questions

Does DevConsole work with the Next.js App Router?

Yes! DevConsole is fully compatible with Next.js 13+ App Router, Server Components, and the latest Next.js features. It's designed for modern React Server Components workflows.

Can DevConsole help debug hydration errors?

Absolutely. DevConsole can help identify server/client state mismatches that cause hydration errors by showing you exactly what state exists on each side.

How do I use DevConsole with NextAuth?

DevConsole includes a session bypassing feature that lets you skip login flows and instantly assume different user roles—perfect for testing authentication-protected routes.

DevConsole for Other Teams

See how DevConsole helps different types of developers

Level up your development

Join thousands of developers who ship faster with DevConsole.

Get DevConsole