├── 00-go-simple ├── README.md └── main.go ├── 01-go-web-plot-flot ├── README.md └── main.go ├── 02-go-web-plot-flot-update ├── README.md └── main.go ├── 03-go-web-plot-gchart ├── README.md └── main.go ├── 04-go-web-plot-flot-static ├── README.md ├── main.go └── root-fs │ ├── favicon.ico │ ├── index.html │ └── static │ ├── jquery-2.2.2.min.js │ └── jquery.flot-0.8.3.min.js ├── 05-go-web-plot-flot-embedded ├── README.md ├── bindata_assetfs.go ├── gen-assets.go ├── main.go └── root-fs │ ├── favicon.ico │ ├── index.html │ └── static │ ├── jquery-2.2.2.min.js │ └── jquery.flot-0.8.3.min.js ├── 06-go-web-gopherjs ├── README.md ├── main.go ├── pkg │ └── pkg.go └── root-fs │ ├── app.go │ └── index.html ├── 07-go-web-plot-gonum-svg ├── README.md └── main.go ├── 08-go-login-auth ├── README.md └── main.go ├── 09-simple-https ├── README.md ├── client.go └── server.go └── README.md /00-go-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/00-go-simple/README.md -------------------------------------------------------------------------------- /00-go-simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/00-go-simple/main.go -------------------------------------------------------------------------------- /01-go-web-plot-flot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/01-go-web-plot-flot/README.md -------------------------------------------------------------------------------- /01-go-web-plot-flot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/01-go-web-plot-flot/main.go -------------------------------------------------------------------------------- /02-go-web-plot-flot-update/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/02-go-web-plot-flot-update/README.md -------------------------------------------------------------------------------- /02-go-web-plot-flot-update/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/02-go-web-plot-flot-update/main.go -------------------------------------------------------------------------------- /03-go-web-plot-gchart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/03-go-web-plot-gchart/README.md -------------------------------------------------------------------------------- /03-go-web-plot-gchart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/03-go-web-plot-gchart/main.go -------------------------------------------------------------------------------- /04-go-web-plot-flot-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/04-go-web-plot-flot-static/README.md -------------------------------------------------------------------------------- /04-go-web-plot-flot-static/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/04-go-web-plot-flot-static/main.go -------------------------------------------------------------------------------- /04-go-web-plot-flot-static/root-fs/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-go-web-plot-flot-static/root-fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/04-go-web-plot-flot-static/root-fs/index.html -------------------------------------------------------------------------------- /04-go-web-plot-flot-static/root-fs/static/jquery-2.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/04-go-web-plot-flot-static/root-fs/static/jquery-2.2.2.min.js -------------------------------------------------------------------------------- /04-go-web-plot-flot-static/root-fs/static/jquery.flot-0.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/04-go-web-plot-flot-static/root-fs/static/jquery.flot-0.8.3.min.js -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/README.md -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/bindata_assetfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/bindata_assetfs.go -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/gen-assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/gen-assets.go -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/main.go -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/root-fs/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/root-fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/root-fs/index.html -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/root-fs/static/jquery-2.2.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/root-fs/static/jquery-2.2.2.min.js -------------------------------------------------------------------------------- /05-go-web-plot-flot-embedded/root-fs/static/jquery.flot-0.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/05-go-web-plot-flot-embedded/root-fs/static/jquery.flot-0.8.3.min.js -------------------------------------------------------------------------------- /06-go-web-gopherjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/06-go-web-gopherjs/README.md -------------------------------------------------------------------------------- /06-go-web-gopherjs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/06-go-web-gopherjs/main.go -------------------------------------------------------------------------------- /06-go-web-gopherjs/pkg/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/06-go-web-gopherjs/pkg/pkg.go -------------------------------------------------------------------------------- /06-go-web-gopherjs/root-fs/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/06-go-web-gopherjs/root-fs/app.go -------------------------------------------------------------------------------- /06-go-web-gopherjs/root-fs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/06-go-web-gopherjs/root-fs/index.html -------------------------------------------------------------------------------- /07-go-web-plot-gonum-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/07-go-web-plot-gonum-svg/README.md -------------------------------------------------------------------------------- /07-go-web-plot-gonum-svg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/07-go-web-plot-gonum-svg/main.go -------------------------------------------------------------------------------- /08-go-login-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/08-go-login-auth/README.md -------------------------------------------------------------------------------- /08-go-login-auth/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/08-go-login-auth/main.go -------------------------------------------------------------------------------- /09-simple-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/09-simple-https/README.md -------------------------------------------------------------------------------- /09-simple-https/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/09-simple-https/client.go -------------------------------------------------------------------------------- /09-simple-https/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/09-simple-https/server.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sbinet/go-web-examples/HEAD/README.md --------------------------------------------------------------------------------