Vincent Weevers

Results 327 comments of Vincent Weevers

I would guess because of https://github.com/zeromq/zeromq.js/blob/dd72eed5835e321e5c728959744e08f093557beb/package.json#L73 (the additional steps before `node-gyp-build`).

OK, may need `npm i --verbose` then. I don't recall.

@lovell Go ahead and merge when you're happy with it (I personally don't have time to review and other folks are quiet).

@srepollock This PR is incomplete. There have been breaking changes between levelup 0.x and 4 you'll need to account for.

To make sure I understand, you previously relied on `prebuild-install` to download a prebuilt binary for Windows. So the question is not about cross-compiling, correct? If so, the thing getting...

It makes sense to skip the `require()` test if platform or arch doesn't match! Wanna send a PR to `node-gyp-build`? Also so that we can discuss it with more people....

This is also common in my projects, but I don't mind the repetitiveness (anymore). Having author names in a consistent place makes a changelog easy to scan. In contrast, the...

> stick to `slice` when using Buffers. Note that `slice()` is deprecated in Node.js because the Node.js implementation (which does not copy) is not compatible with `TypedArray.prototype.slice()` which does copy....

See [`rave-level`](https://github.com/Level/rave-level) and (for more control) [`many-level`](https://github.com/Level/many-level). Alternatively, switch from LevelDB to RocksDB. Although we haven't updated our binding for RocksDB ([`rocksdb`](https://github.com/Level/rocksdb) and [`level-rocksdb`](https://github.com/Level/level-rocksdb)) in a while, it does have...

Under which runtime? It will work fine in Node.js and probably that new Bare thing too, but I don't know about Bun, Deno, LLRT. And when using a bundler, that...