A simple svelte frontend and go backend todo app with crud operations.
git clone https://github.com/SultanBadri/svelte-go-todo-app.git
Now use two terminals. One for the backend server and one for the UI.
Run this to start the server at http://localhost:8080/
cd backend
go run main.go OR go run .
Run this to play with the todo application at http://localhost:5173/
cd frontend
yarn
yarn dev