Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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!