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
- Host: GitHub
- URL: https://github.com/mikhail11235/notes_app
- Owner: Mikhail11235
- Created: 2024-03-20T17:43:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T17:49:30.000Z (over 2 years ago)
- Last Synced: 2025-01-08T11:48:53.438Z (over 1 year ago)
- Topics: fastapi, react, sqlite
- Language: JavaScript
- Homepage:
- Size: 180 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)