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

https://github.com/ibrsec/todonext

Todo app with NextJS and Typescript
https://github.com/ibrsec/todonext

axios nextjs tailwind typescript

Last synced: about 1 month ago
JSON representation

Todo app with NextJS and Typescript

Awesome Lists containing this project

README

          







Logo

Typescript Next Todo App


An awesome Typescript Next Todo App (next api)
Explore the docs ยป




View Demo
ยท
Report Bug
ยท
Request Feature


๐Ÿ“Ž Table of Contents ๐Ÿ“Ž


  1. About The Project


  2. Overview

  3. Quick Setup

  4. Directory structure

  5. Built With


---


## โ„น๏ธ About The Project

[![todonext](./public/project.png)](https://todonext-mu.vercel.app/)

(back to top)

---


## ๐Ÿ‘€ Overview


๐ŸŽฏ Used Next environment with typescript
๐ŸŽฏ Axios is used for requests
๐Ÿ–ฅ Todos are stored in ui
๐Ÿ–ฅ Todos can be added
๐Ÿ–ฅ Todos can be edited
๐Ÿ–ฅ Todos status can be changed to completed
๐Ÿ–ฅ Todos can be deleted
๐ŸŒฑ As Backend next js is used but any db is not used! So Datas are saved to the ui!
๐ŸŒฑ Because of that sometimes page needs a refresh

(back to top)


## ๐Ÿ›ซ Quick Setup

```sh
# clone the project
git clone https://github.com/ibrsec/todonext.git

# enter the project directory
cd todonext

# install dependency
npm install || yarn install

# develop
npm run dev || yarn start
```

(back to top)


## ๐Ÿ“‚ Directory structure

```diff
todonext (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---app (folder)
| | |---api (folder)
| | | โ””---todos (folder)
| | | |---[id] (folder)
| | | | โ””---route.ts
| | | |
| | | |---data.ts
| | | โ””---route.ts
| | |
| | |---global.css
| | |---layout.tsx
| | โ””---page.tsx
| |
| |
| |---dbConfig (folder)
| |
| |
| โ””---types.d.ts
|
|---next.config.mjs
|---postcss.config.mjs
|---tailwind.config.ts
|---.eslintrc.json
|----tsconfig.json
|----package.json
|----yarn.lock
โ””----readme.md
```

(back to top)

---


### ๐Ÿ—๏ธ Built With














(back to top)