An open API service indexing awesome lists of open source software.

https://github.com/udhos/mustago

mustago - simple golang mustache template evaluation in html
https://github.com/udhos/mustago

go golang gopherjs html5 javascript mustache

Last synced: 4 months ago
JSON representation

mustago - simple golang mustache template evaluation in html

Awesome Lists containing this project

README

        

# mustago
mustago - simple golang mustache template evaluation in html

Online demo: https://udhos.github.io/mustago

Source repo: https://github.com/udhos/mustago

Quick Start
===========

Build recipe:

$ go get github.com/udhos/mustago
$ cd ~/go/src/github.com/udhos/mustago
$ ./build.sh

Run a web server publishing these files:

index.html
mustago.js
mustago.js.map

Example:

$ go get github.com/udhos/gowebhello
$ ~/go/bin/gowebhello ;# publish current dir as http://localhost:8080/www
Now open http://localhost:8080/www

END