- creates unordered lists, stores them in nosql database
- hashes are assigned as keys
- allow signup to allow easy access to past lists
{
"id" : "6a2bds0",
"author" : "malantonio",
"title" : "shoppin' list", // title is optional
"list" : [
{ "item" : "apples", "checked" : false },
{ "item" : "oranges", "checked" : false },
{ "item" : "potatoes", "checked" : false },
{ "item" : "thin spaghetti", "checked" : true },
{ "item" : "gingerbread cookies", "checked" : true }
]
}
shows up sortof like:
- apples
- oranges
- potatoes
thin spaghettigingerbread cookies