Hello world with Golang and Angular 4

April 14, 2017 · View on GitHub

Prerequisites

  • Client: Node, npm, yarn, angular-cli
  • Server: Go

## Getting started: ##

  • Install dependences: $ cd client && yarn install && cd ..
  • Execute only Angular for development: $ cd client && ng serve
  • Compile and run project (Angular with Golang) $ cd client && ng build --aot && cd .. && go run server.go

Open http://localhost:3000/ 😊