An open source application built using the new router, server components and everything new in Next.js 13.
Find a file
2022-11-23 19:38:07 +04:00
.husky chore: add commitlint and prettier 2022-11-22 12:55:03 +04:00
app fix: break this 2022-11-23 19:38:07 +04:00
components refactor: switch to unstable_getServerSession for API routes 2022-11-22 17:41:51 +04:00
config feat: implement responsive styles for dashboard 2022-11-22 12:42:47 +04:00
content feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
hooks feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
lib refactor: switch to unstable_getServerSession for API routes 2022-11-22 17:41:51 +04:00
pages refactor: prevent double session call in api route 2022-11-22 18:15:50 +04:00
prisma feat: implement stripe billing 2022-11-21 12:40:10 +04:00
public feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
styles fix: a11y 2022-11-21 21:27:46 +04:00
types refactor: switch to unstable_getServerSession for API routes 2022-11-22 17:41:51 +04:00
ui fix: update z-index for alert overlay 2022-11-23 19:34:16 +04:00
.commitlintrc.json chore: add commitlint and prettier 2022-11-22 12:55:03 +04:00
.editorconfig chore: add commitlint and prettier 2022-11-22 12:55:03 +04:00
.env.example feat: add NEXT_PUBLIC_APP_URL env variable 2022-11-21 18:46:49 +04:00
.eslintrc.json feat: initial commit 2022-10-26 17:18:06 +04:00
.gitignore feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
.nvmrc deps: update node version 2022-11-04 08:18:35 +04:00
.prettierrc.json chore: add commitlint and prettier 2022-11-22 12:55:03 +04:00
contentlayer.config.js fix: a11y 2022-11-21 21:27:46 +04:00
LICENSE.md feat: initial commit 2022-10-26 17:18:06 +04:00
middleware.ts feat: add from redirect for auth (#18) 2022-11-15 11:12:01 +04:00
next.config.mjs feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
package.json chore: add commitlint and prettier 2022-11-22 12:55:03 +04:00
postcss.config.js feat: initial commit 2022-10-26 17:18:06 +04:00
README.md docs: update README 2022-11-22 19:06:57 +04:00
tailwind.config.js feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
tsconfig.json feat: contentlayer (#22) 2022-11-17 21:43:12 +04:00
yarn.lock chore: add commitlint and prettier 2022-11-22 12:55:03 +04:00

Taxonomy

An open source application built using the new router, server components and everything new in Next.js 13.

Warning

This app is a work in progress. I'm building this in public. You can follow the progress on Twitter @shadcn. See the roadmap below.

Demo

screenshot-2

About this project

Right now, I'm using this project as an experiment to see how a modern app (with features like authentication, subscriptions, API routes, static pages for docs ...etc) would work in Next.js 13 and server components.

I'll be posting updates and issues here.

A few people have asked me to turn this into a starter. I think we could do that once the new features are out of beta.

Note on Performance

Warning

This app is using the canary releases for Next.js 13 and React 18. The new router and app dir is still in beta and not production-ready. NextAuth.js, which is used for authentication, is also not fully supported in Next.js 13 and RSC. Expect some performance hits when testing the dashboard. If you see something broken, you can ping me @shadcn.

Features

  • New /app dir,
  • Routing, Layouts, Nested Layouts and Layout Groups
  • Data Fetching, Caching and Mutation
  • Loading UI
  • Server and Client Components
  • API Routes and Middlewares
  • Authentication using NextAuth.js
  • ORM using Prisma
  • Database on PlanetScale
  • UI Components built using Radix UI
  • Documentation and blog using MDX and Contentlayer
  • Subscriptions using Stripe
  • Styled using Tailwind CSS
  • Validations using Zod
  • Written in TypeScript

Roadmap

  • Add MDX support for basic pages
  • Build marketing pages
  • Subscriptions using Stripe
  • Responsive styles
  • Add OG image for blog using @vercel/og
  • Dark mode

Known Issues

A list of things not working right now:

  1. GitHub authentication (use email)
  2. Prisma: Error: ENOENT: no such file or directory, open '/var/task/.next/server/chunks/schema.prisma'
  3. Next.js 13: Client side navigation does not update head

Why not trpc, Turborepo or X?

I might add this later. For now, I want to see how far we can get using Next.js only.

If you have some suggestions, feel free to create an issue.

Running Locally

  1. Install dependencies using Yarn:
yarn
  1. Copy .env.example to .env.local and update the variables.

  2. Start the development server:

yarn dev

License

Licensed under the MIT license.