Sunday, July 05, 2015

Go Lang web server

nice class
Creating Web Applications with Go – Pluralsight Training

This is what it takes to create an efficient web server, including video streaming support.

package main
import "net/http"
func main() {
    http.ListenAndServe(":8000", http.FileServer(http.Dir("public")))
}

to demo mp4 straming, class is using
"open movie" project: Big Buck Bunny (CC3)
by using open source tool Blender (GNU)