level-hydrator
Normalize data across leveldbs (or sublevels)
Example
var level = ;var sub = ;var db = ;var hydrator = ; // init dbsvar Author = db;var Book = db;var Image = db; // configure a hydrator called `author` for two hydratable properties: `books` and `photo`var h = ;// now you can do: h.author.hydrate(obj, cb) // a new author data object with nested objects (1-to-1 and 1-to-m)var author = name: 'Jack Kerouac' books: title: 'On the Road' year: 1957 photo: url: 'http://bit.ly/1nf9eT9' width: 220 height: 220 ; // example of dehydrating, then hydrating it backhauthor;