Skip to content

Commit 87f603f

Browse files
author
Evan You
committedAug 27, 2013
readme, todos
1 parent 6d3a57f commit 87f603f

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed
 

‎README.md

+17-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
1-
# Seed (WIP)
2-
## a mini MVVM framework
1+
# Seed.js
2+
3+
Mini MVVM framework
4+
5+
[ **BETA - tests not complete** ]
6+
7+
## Features
38

49
- 8kb gzipped, no dependency.
5-
- DOM based templates with precise and efficient manipulation
6-
- POJSO (Plain Old JavaScript Objects) Models FTW - even nested objects.
10+
- DOM based templates with auto data binding.
11+
- Precise and efficient DOM manipulation with granularity down to a TextNode.
12+
- POJSO (Plain Old JavaScript Objects) Models that can be shared across ViewModels with arbitrary levels of nesting.
713
- Auto dependency extraction for computed properties.
814
- Auto event delegation on repeated items.
9-
- Flexible API.
15+
- Flexible API: Angular-style or Backbone-style, it's up to you.
1016
- [Component](https://github.com/component/component) based, but can also be used with [Browserify](https://github.com/substack/node-browserify), as a CommonJS/AMD module or as a standalone library.
1117

1218
## Browser Support
@@ -29,13 +35,17 @@
2935

3036
$ npm install seed-mvvm
3137

38+
**Bower**
39+
40+
$ bower install seed
41+
3242
**Module Loaders, e.g. RequireJS, SeaJS**
3343

34-
Built versions in `/dist` can be used directly as a CommonJS or AMD module.
44+
Built versions in `/dist` or installed via Bower can be used directly as a CommonJS or AMD module.
3545

3646
**Standalone**
3747

38-
Loading a built version in `/dist` via a script tag will register `seed` as a global variable.
48+
Simply include a built version in `/dist` or installed via Bower with a script tag. `seed` will be registered as a global variable.
3949

4050
## [ Docs under construction... ]
4151

‎TODO.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
- tests
22
- docs
3+
- ability to create custom tags
34
- plugins
45
- seed-touch (e.g. sd-drag="onDrag" sd-swipe="onSwipe")
56
- seed-storage (RESTful sync)

0 commit comments

Comments
 (0)
Please sign in to comment.