How to do it...

  1. Create a new project and skeleton application by executing the following command:
$ ng new angularjs-client
  1. Move to the angularjs-client directory and create server.go by executing the following command:
$ cd angularjs-client && touch server.go
  1. Copy the following code to server.go:
package mainimport (  "encoding/json"  "log"  "net/http"  "github.com/gorilla/mux")const (  CONN_HOST = "localhost"  CONN_PORT = "8080")type Route struct {  Name string  Method string  Pattern string  HandlerFunc http.HandlerFunc}type Routes []Routevar routes = Routes{  Route  {    "getEmployees",    "GET",    "/employees",    getEmployees,  },  Route  {    "addEmployee",    "POST",    "/employee/add",    addEmployee,  },}type Employee struct {  Id string `json:"id"` FirstName string ...

Get Go Web Development Cookbook 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.