Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaungmyathan22/golang-react-todo-app
Simple todo app written in react and golang
https://github.com/kaungmyathan22/golang-react-todo-app
golang mantine react swr
Last synced: 8 days ago
JSON representation
Simple todo app written in react and golang
- Host: GitHub
- URL: https://github.com/kaungmyathan22/golang-react-todo-app
- Owner: kaungmyathan22
- Created: 2023-12-08T17:19:40.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-08T18:09:38.000Z (about 1 year ago)
- Last Synced: 2024-11-07T23:42:25.396Z (2 months ago)
- Topics: golang, mantine, react, swr
- Language: TypeScript
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoLang + React Todo App
A simple Todo App built with GoLang for the backend and React for the frontend. This project does not rely on a database and stores todo items in-memory.
## Features
- Add new todo items.
- Mark todo items as complete.
- Remove completed todo items.
- View the list of todo items.## Prerequisites
- [Go](https://golang.org/) installed on your machine.
- [Node.js](https://nodejs.org/) and [npm](https://www.npmjs.com/) for the React frontend.## Getting Started
1. #### Clone the repository:
```bash
git clone https://github.com/your-username/your-todo-app.git
cd your-todo-app
```
2. #### Start the GoLang server:```bash
cd backend
go run main.go
```The server will run on http://localhost:8080.
3. #### Install dependencies and start the React frontend:
```bash
cd frontend
npm install
npm start
```The React app will be accessible at http://localhost:3000.