NEXT-EMAIL-CLIENT(1)
NAME
next-email-client — An email client built with the Next.js App Router and Postgres.
SYNOPSIS
INFO
724 stars
141 forks
0 views
TypeScriptData & Databases
DESCRIPTION
An email client built with the Next.js App Router and Postgres.
README
Next.js Email Client
This is an email client template built with Next.js and Postgres. It's built to show off some of the features of the App Router, which enable you to build products that:
- Navigate between routes in a column layout while maintaining scroll position (layouts support)
- Submit forms without JavaScript enabled (progressive enhancement)
- Navigate between routes extremely fast (prefetching and caching)
- Retain your UI position on reload (URL state)
Demo: https://next-email-client.vercel.app
Tech Stack
- Framework: Next.js
- Database: Postgres
- ORM: Drizzle
- Styling: Tailwind CSS
- UI Library: shadcn/ui
Getting Started
git clone https://github.com/leerob/next-email-client
cd next-email-client
pnpm install
Running Locally
Use the included setup script to create your .env file:
pnpm db:setup
Then, run the database migrations and seed the database with emails and folders:
pnpm db:migrate
pnpm db:seed
Finally, run the Next.js development server:
pnpm dev
Open http://localhost:3000 in your browser to see the app in action.
Implemented
- ✅ Search for emails
- ✅ Profile sidebar with user information
- ✅ View all threads
- ✅ View all emails in a thread
- ✅ Compose view
- ✅ Seed and setup script
- ✅ Highlight searched text
- ✅ Hook up compose view
- ✅ Delete emails (move to trash)
- Make side profile dynamic
- Support Markdown?
- Make up/down arrows work for threads
- Global keyboard shortcuts
- Better date formatting
- Dark mode styles
SEE ALSO
jq(1)— Command-line JSON processor — sed for JSON datafx(1)— Terminal JSON viewer and processor — interactive explorationfselect(1)— Find files with SQL-like querieshelix-db(1)— HelixDB is an open-source graph-vector database built from scratch in Rust.peepdb(1)— CLI tool and python library to inspect databases fast.
clihub3/4/2026NEXT-EMAIL-CLIENT(1)