Feross Aboukhadijeh
Feross Aboukhadijeh
@lmatteis Can't you just create 8 + 1 clients, then have one of them do two put() calls in a row? Only the first put() call should actually be sent...
@lmatteis You can spy on calls to the `dht._onput()` function. Not super elegant, but we don't have an event for when a `put` happens. So this works: ``` js var...
@lmatteis Can you send a PR? @mafintosh I'm gonna need your help to review this one 👍 I really haven't dug into the BEP44 stuff very deeply.
One reason that it might not be a good idea to do this is users might be using this module to create a DHT on their local network. If we...
Hi there @tchakabam. Thanks for the PR! It looks like this PR still needs a bit of work before it can be merged. Are you interested in finishing it up?
Adding a plugin does not automatically enable rules. You need to add rules to the eslint config in order for them to be enabled. In the case of `standard`, since...
One thing I don't understand is why adding a plugin automatically enables rules when used with `eslint` directly but not when used with `standard`.
Can someone test this out in `standard` 16? We're using ESLint a bit more directly (with fewer layers in between) so there's a (slim) chance that this bug has fixed...
I actually think this is an interesting idea. I don't want to make `standard` configurable, but being able to do, for example: `npm install standard standard-react`, then run `standard` and...
This sounds reasonable to me. We currently use [`find-root`](https://www.npmjs.com/package/find-root) to find the nearest `package.json`. What does babel use?