Skip to content

hrgui/go-todo-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

todo-list

Todo List in Go and in Vue.

Product Requirements

  1. Can create a Todo. A todo consists of a title of any length
  2. Todos can be updated - marked as completed.
  3. Todos can be deleted.

Getting Started with Development

You'll need / Prerequisites

  • node.js v16 + yarn
  • docker

How to run - UI

yarn
yarn dev

How to run - API

In root directory,

docker-compose up -d

Ports

  • 4000 - rest api

Technical Design

For the UI, it is developed as a Vue app. For the API, Why REST? Wanted to learn how to make Go APIs in REST first prior to jumping to GraphQL, or grpc.

The whole point is to learn how to go out of the comfort zone as a Software Engineer. I have done React + Node for too long. I am curious about Go and Vue, and I want to learn from it. I want to know what I can make from those technologies.

Models

Todo

interface Todo {
  id: number /* note, IRL this would be string but simplification  */;
  title: string;
  completed: boolean;
  created_date: Date;
  updated_date: Date;
}

REST API

GET /todos

Get all todos

GET /todo/:id

Get one todo

POST /todo

Create one todo

PUT /todo/:id

Update Todo

DELETE /todo/:id

Delete Todo

How I learned all this / or reviewed

About

Harman learns how to make a todo list in Go and Vue

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published