https://github.com/geertjohan/ango-old
AngularJS & Go. Communication and data-binding
https://github.com/geertjohan/ango-old
Last synced: 27 days ago
JSON representation
AngularJS & Go. Communication and data-binding
- Host: GitHub
- URL: https://github.com/geertjohan/ango-old
- Owner: GeertJohan
- Created: 2013-11-26T21:49:49.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-11T20:29:53.000Z (over 11 years ago)
- Last Synced: 2025-02-11T12:18:43.508Z (5 months ago)
- Language: Go
- Homepage:
- Size: 180 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Ango
**In development**, look arround but don't use this just yet :)
**NOTE: Development on this project has stopped. This project has been renamed and is marked for deletion. A new project also named 'ango' has emerged, with essentially the same goal as this one, but a totally different approach. For more information, visit: https://github.com/GeertJohan/ango**
### RPC
### Linked Object (Server > Client sync)
- links with multiple clients
- only synchronized when explicitly asked (`ango.Sync(yourObject)`)
- complete object is re-sent
- object should not be modified by the client### TwoWay Object (Server > Client and Client > Server sync)
- one server, one client
- complete object is re-sent on every update
- write-lock[](http://godoc.org/github.com/GeertJohan/ango)