Explore the capabilities of Next.js 13 through our demo repository showcasing a simple todo app. Dive into server actions and leverage Drizzle ORM integration to grasp how to efficiently manage tasks.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
next/font
- to automatically optimize and load Inter and Lexend from Google Fonts.
This repository contains a simple demo todo app created with Next.js 13, showcasing the usage of server actions and integration with Drizzle ORM. It serves as a practical example to help you understand the implementation of these features and build efficient applications.
- Manage tasks: Create, update, and delete todos with ease.
- Server actions: Utilize server-side logic for handling todo operations.
- Drizzle ORM integration: Seamlessly interact with the database using Drizzle ORM.
- Node.js and npm installed on your local machine.
-
Clone this repository:
git clone https://github.com/raymondkneipp/next-todo-app.git
-
Navigate to the project directory:
cd next-todo-app
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Open your browser and visit http://localhost:3000 to access the app.
Contributions are welcome! If you find any issues or have ideas for improvements, please open an issue or submit a pull request.
This project is licensed under the MIT License.
Feel free to explore the codebase, experiment with server actions and Drizzle ORM, and learn how to create powerful applications using Next.js 13.