PIcking Your Javascript Mobile Framework: Part 3 - Minimum Functionality
If you are joining us now, this is a multi-part shootout of mobile Javascript frameworks. In the last instalment, we got a series of candidates, 77 long. In this instalment, we will look at functionality.
The Todo app pushed by the TodoMVC team is very simple, but pretty complete. In it you:
- Create new todo items by entering them into a box
- Display all available todo items
- Alternatively, display only the active ones, or the completed ones
- Mark a todo item as completed by checking a box to its left
- Delete a todo item
- Delete all completed todo items
- Edit a todo item
Bindings and behaviors were refined further:
Continue reading