JsStore

JsStore is an IndexedDB Wrapper. It makes IndexedDB super easy with its SQL like apis.

SELECT * FROM TABLE_NAME WHERE id=1 AND name='abc'
var con = new JsStore.Instance(db_name);
con.select({
     From:table_name,
     Where: {
         Id: 1,
         Name:'abc'
     }
}).then(function(result){
   console.log(result)
})