James M. Greene
James M. Greene
I like the idea. @scottgonzalez Can you take a peek and compare this to what jQuery UI is currently doing and/or needs? Thanks!
If at all possible, maintain basic compatibility with NeDB-based modules like: - [`express-nedb-session`](https://www.npmjs.com/package/express-nedb-session) - _Probably cannot be done since this module internally loads NeDB rather than having it passed in._...
Another option is [`kofrasa/mingo`](https://github.com/kofrasa/mingo), MongoDB query syntax for in-memory objects. 🤔
@bengl: I applaud you for implementing this cool feature. My one personal gripe is that I wish it was in sync with the MongoDB API for `ensureIndex` (NeDB is not...
P.S. @r3b: Do you think all of the changes necessary to enable plugin support could be left intact within the PhantomJS core code and just toggled via a build flag...
@ariya @detro @Vitallium @zackw @milianw: Any tips or recommendations on integrating the plugin support (Flash, etc.) back into PhantomJS `v2.x` core and just controlling it on/off via a flag during...
This looks like a better implementation to consider: https://github.com/louischatriot/nedb/pull/463
Seems like a symmetrical method for writing as a stream would also be necessary for the same reason.
The default `writeAsStream` implementation should be very mindful of honoring backpressure cues from Node like in the examples from the [documentation](https://nodejs.org/docs/latest/api/stream.html#stream_event_drain) and other sources, e.g. [this \[imperfect\] StackOverflow thread](https://stackoverflow.com/a/14595105/471696).
### IMPORTANT NOTE FOR BROWSER COMPATIBILITY All `Stream`-specific module usage should be limited to "storage.js" (which is subbed out for the browser version, for example) and **NOT** put into "persistence.js"...