Vincent Weevers
Vincent Weevers
- [x] Replace usages of `var` with either `const` or `let`, in both generator and generated code - [ ] Maybe use ES6 modules. I'm on the fence about this,...
Seeing as chrome supports some of ES6, and that doesn't need to be transpiled to ES5. Question is, which Chrome version (and thus set of ES6 features) should we target?
TODO: - [x] Pass abstract test suite - [x] Update additional tests - [x] Update types - [x] Cleanup the closing of iterators (see TODO comments in binding) - [x]...
This makes `db.iterator()` with buffer encoding as fast as an iterator with utf8 encoding. The approach is: 1. In each `nextv()` call, create a `std::vector` to hold the raw data...
Follow-up for https://github.com/Level/classic-level/pull/6. In the following example, should the location directory be created recursively? Such that, if the `foo` directory does not exist, it will be created (on open) rather...
If we have to pass say `fillCache` and `asBuffer` options from JS to C++, it's faster to pass those as boolean arguments, rather than a `{ fillCache, asBuffer }` object....
**Implicit snapshots** Main task here is to fix the issue described in https://github.com/Level/leveldown/issues/796. - [x] `abstract-level` (v2): https://github.com/Level/abstract-level/pull/54 - [x] `classic-level` (v2): create snapshot synchronously (https://github.com/Level/classic-level/pull/52) **Explicit snapshots** This is...
It has served us well for a long time, but I've spent more (too much) time chasing issues that arise from changes to their platform, than to changes to the...
Ref: [How do I upgrade to `abstract-level`?](https://github.com/Level/community/tree/534d495d71e51d492b994ed07aaee763fa297efd#how-do-i-upgrade-to-abstract-level) First let's do a doc-deprecation (too many downloads still): - [x] `memdown` - [x] `level-mem` - [x] `abstract-leveldown` - [x] `level-js` - [x]...
As suggested by @ralphtheninja in https://github.com/Level/levelup/issues/667#issuecomment-521118721. TBD where it will live. Let's start by collecting common questions. Please post suggestions and/or edit. - Q: Can't compile. A: usually to upgrade...