List view
# Better user experience with tinier, yet richer API [Road Map for Dexie 4.0](https://dexie.org/roadmap/dexie4.0)
Due by December 30, 2022•1/1 issues closedPrepare Dexie for asyncronic hooks and make it possible to build the following features as addons or built-in: * Fully asyncronic bulk-based hooks * Merge Table into Collection and make Collection support arbritary expressions and chained where-clauses and orderBy for Collection. ```js db.orders .where('customer').equals('FooCustomer') .where('productId').anyOf(x, y, x) .orderBy('orderDate').reverse(); ``` * Define the Collection interface and implement it for Postgres, SQLServer or MongoDB. * Collection.observe() = live queries. * Implement a server backend to be able to serve Dexie requests built on top of Postgres, SQLServer, MongoDB or levelup.
No due dateUse a build system (gulp, grunt or plain npm) to automate builds and unit testing in various browsers. Split src/Dexie.js into separate files.
No due date