A web client that consumes the API
We are going to put together an ultra simple web client that consumes the capabilities and data exposed through our API, allowing users to interact with the polling system we built in the previous chapter and earlier in this chapter. Our client will be made up of three web pages:
- An
index.html
page that shows all the polls - A
view.html
page that shows the results of a specific poll - A
new.html
page that allows users to create new polls
Create a new folder called web
alongside the api
folder and add the following content to the main.go
file:
package main import ( "flag" "log" "net/http" ) func main() { var addr = flag.String("addr", ":8081", "website address") flag.Parse() mux := http.NewServeMux() mux.Handle("/", http.StripPrefix("/", ...
Get Go Programming Blueprints - Second Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.