https://github.com/bredele/brick-view
MVVM view for brick
https://github.com/bredele/brick-view
Last synced: about 1 year ago
JSON representation
MVVM view for brick
- Host: GitHub
- URL: https://github.com/bredele/brick-view
- Owner: bredele
- Created: 2013-09-01T05:20:32.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-04-15T23:34:05.000Z (over 12 years ago)
- Last Synced: 2025-04-06T03:28:24.405Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 508 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
Awesome Lists containing this project
README
# View
[](https://travis-ci.org/bredele/brick-view) [](https://saucelabs.com/u/bredele)
## Installation
with [component](http://github.com/component/component):
$ component install bredele/brick-view
with [nodejs](http://nodejs.org):
$ npm install brick-view
## 10 seconds example
```js
var view = brick('{{name}}', {
name: 'bredele'
});
view.build(document.body);
```
## Browser support
brick is fully tested and supports all mainstream browsers from IE8+.
[](https://saucelabs.com/u/bredele)
IE7 requires the use of JSON and querySelector polyfill.
## License
The MIT License (MIT)
Copyright (c) 2014 Olivier Wietrich
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.