Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikhilmandaliya/next.js-todo
A simple Todo app built with Next.js using the App Router, tRPC and Drizzle ORM.
https://github.com/nikhilmandaliya/next.js-todo
drizzle drizzle-orm nextjs trpc trpc-client trpc-server
Last synced: 3 days ago
JSON representation
A simple Todo app built with Next.js using the App Router, tRPC and Drizzle ORM.
- Host: GitHub
- URL: https://github.com/nikhilmandaliya/next.js-todo
- Owner: NikhilMandaliya
- Created: 2024-05-17T04:47:47.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-05-28T10:18:20.000Z (6 months ago)
- Last Synced: 2024-05-29T01:56:52.735Z (6 months ago)
- Topics: drizzle, drizzle-orm, nextjs, trpc, trpc-client, trpc-server
- Language: TypeScript
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Next.js Todo App
This repository contains a simple Todo app built with Next.js using the App Router, tRPC for type-safe APIs, and Drizzle ORM for database interactions. Ideal for demonstrating modern web development practices with a focus on performance and scalability.
## Getting Started
### Prerequisites
Before you begin, ensure you have Node.js installed on your machine.
### Installation
1. Clone the repository:
```bash
git clone https://github.com/NikhilMandaliya/Next.js-todo.git
```2. Install dependencies:
```bash
cd Next.js-todo
npm install
```3. Start the developement server:
```bash
npm run dev
```4. The API should now be running on `http://localhost:3000`
---
This project was create to understand Next.js with trpc integration while leveraging Drizzle for database interactions.
Happy coding!