Fully server side application with all the interactivity of a client MV* application.
There are no client side templates of any kind. All IO is driven through HTML template requests.
See Treetop for more details.
Assuming you have a $GOPATH
setup and npm
is installed.
go get github.com/rur/todowithoutmvc
cd $GOPATH/src/github.com/rur/todowithoutmvc/
npm install
go run start.go
After the server is running go to http://localhost:8000 and starting using the app. Activate your network inspector to help see what is going on.
Note, this app makes use of the POST redirect GET pattern via XHR which is opaque to many network inspectors.