goodlifeinc / go-todo

todo app with go, mongo and react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ“ Go To Do App

This is a to-do list application. The complete tutorial is published on my blog.

Server: Golang
Client: React, semantic-ui-react
Database: Local MongoDB

The offline version of application Get Shit Done is hosted at

πŸ”— https://schadokar.github.io/go-to-do-app/

πŸ”— http://getshitdone.surge.sh


πŸ–ŠοΈ Application Requirement

golang server requirement

  1. golang https://golang.org/dl/
  2. gorilla/mux library for router go get -u github.com/gorilla/mux
  3. mongo-driver library to connect with mongoDB go get go.mongodb.org/mongo-driver/mongo

react client

From the Application directory

create-react-app client

πŸ’» Start the application

  1. Make sure your mongoDB is started
  2. From server directory, open a terminal and run go run main.go
  3. From client directory,
    a. install all the dependencies using npm install
    b. start client npm start

🐼 Walk through the application

Open application at http://localhost:3000

Index page

Create task

Enter a task and Enter

Task Complete

On completion of a task, click "done" Icon of the respective task card.

You'll notice on completion of task, card's bottom line color changed from yellow to green.

Undo a task

To undone a task, click on "undo" Icon,

You'll notice on completion of task, card's bottom line color changed from green to yellow.

Delete a task

To delete a task, click on "delete" Icon.


References

https://godoc.org/go.mongodb.org/mongo-driver/mongo
https://www.mongodb.com/blog/post/mongodb-go-driver-tutorial
https://vkt.sh/go-mongodb-driver-cookbook/

About

todo app with go, mongo and react


Languages

Language:JavaScript 47.6%Language:Go 41.5%Language:HTML 8.4%Language:CSS 2.4%