For Programmers, By Programmers.
A Standard Next.js App with Express.js on Vercel!
Youtube Video: Link
- Next Js - The React Framework for the Web.
- Typescript - JavaScript with syntax for types.
- Express - Fast, opinionated, minimalist web framework for Node.js.
$PROJECT_ROOT
│
├── ui # Nextjs app
│
├── api # Expressjs
│
├── vercel.json # Vercel config file
- Clone Repo
mkdir nextjs-express
cd nextjs-express
git clone https://github.com/codingforinnovations/nextjs-express .
- For Backend
cd api
pnpm install
pnpm dev
- For Frontend
cd ui
pnpm install
pnpm dev
Open Backend in : http://0.0.0.0:8000
Open Frontend in : http://0.0.0.0:3000