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

https://github.com/mikhail11235/notes_app

FastAPI + React tutorial
https://github.com/mikhail11235/notes_app

fastapi react sqlite

Last synced: about 2 months ago
JSON representation

FastAPI + React tutorial

Awesome Lists containing this project

README

          

# 📒 Notes App

Simple notes application with **FastAPI** backend and **React** frontend.

## 📚 API Endpoints

| Method | Endpoint | Description |
|:--------|:---------------------|:---------------------------|
| `POST` | `/notes` | Create a new note |
| `GET` | `/notes` | Get all notes |
| `GET` | `/notes/{note_id}` | Get a note by ID |
| `PUT` | `/notes/{note_id}` | Update a note by ID |
| `DELETE` | `/notes/{note_id}` | Delete a note by ID |

## Source:
[Fast API + React App With HarperDB](https://medium.com/@dennisivy/fast-api-react-crud-app-with-harperdb-5834af537c23)