Obviel.js: Object, View, Element Javascript lib
I just saw the posts by Martijn Faassen related to Obviel, I was quite busy this past month that I did not notice them, and due to my mail filters I also didn't notice I was added into the obviel googlegroup. (Sorry Martijn >.<)
Anyway, a year ago until a few months back, I was working with Martijn for his client project. It was a pleasure working with him and I learnt quite a lot from him. In the project, we utilize a pattern to allow us to write dynamic site using javascript for the frontend, and JSON at the backend. The server controls what would be displayed in the frontend by returning JSON objects with a specific iface (short for interface). Obviel was then born out from it.
For example, a simple hello world app.
$(document).ready(function(){ $('#main').render('http://path/to/app.json') })
Where app.json is :
{ iface: 'print', message: 'Hello world' }
And the obviel view defined as :
obviel.view({ iface: 'print', r…
Anyway, a year ago until a few months back, I was working with Martijn for his client project. It was a pleasure working with him and I learnt quite a lot from him. In the project, we utilize a pattern to allow us to write dynamic site using javascript for the frontend, and JSON at the backend. The server controls what would be displayed in the frontend by returning JSON objects with a specific iface (short for interface). Obviel was then born out from it.
For example, a simple hello world app.
$(document).ready(function(){ $('#main').render('http://path/to/app.json') })
Where app.json is :
{ iface: 'print', message: 'Hello world' }
And the obviel view defined as :
obviel.view({ iface: 'print', r…