- Create a new project and skeleton application by executing the following command:
$ ng new angularjs-client
- Move to the angularjs-client directory and create server.go by executing the following command:
$ cd angularjs-client && touch server.go
- 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 ...