This is my implementation from golang Lets Go Book with couple of changes
You can check the working code in here
My Change permalink
- Added Response Time & status, kinda like morgan in express
Will not Change Middleware to compossable middleware like express because go middleware doesnt behave like express
Finished - What I Learn permalink
- Best Practices building web app using go
- using std package like http, flag, context, httptest, and many more
unit testing, mocking and end-to-end testing, integration testing in GO
TODO List Exercises permalink
- Add About Page to the App
- Add a debug mode
- more http e2e testing
- add Account page to the app
- Redirect appropriately after login
- Implement Change Password Features