Jeremiah Senkpiel

Results 120 issues of Jeremiah Senkpiel

So I've been realizing a couple related things... A big one is that I think protocol enforcement needs to be done via classes / helpers somehow, but at the same...

@benjamingr Mentioned Deno was discussing their approach to streams. We should check it out.

Here is my presentation I gave at the collab summit at Node+JS Interactive 2018: https://fishrock123.github.io/nodejs-collab-summit-2018

So, I finally profiled this on my linux box (macOS is useless because of `___channel_get_opt`, good luck). I have documented the results so far in [`performance.md`](https://github.com/Fishrock123/bob/blob/master/performance.md). I only really tried...

The background here is from [keygrip](https://www.npmjs.com/package/keygrip) which Express.js uses for it's cookie signing. The idea is that the end user can rotate their keys, adding a new one which signs...

It would be nice if instead of polluting signed cookies, there was an easy way to have the raw cookie sit alongside a signature cookie. This would greatly help any...

It is very useful to have non-panic-ing logger setups for test binaries, which compile all test-cases into one binary and can have conflicts when there is optional logging in a...

I think the numerical output is similar to some Node.js logger, if I recall? I think `bole.js` outputs as e.g. `"level": "info"`, though. [`json_env_logger`](https://crates.io/crates/json_env_logger) also outputs as text _(though, unfortunately...

[`http-client`](https://github.com/http-rs/http-client) now depends on deadpool for keep-alive (connection pooling) support when using it's lightweight `async-h1` backing implementation. That now pulls in `tokio`, which is a bit undesirable when using a...

enhancement
A-core
S-blocked
RT-async-std

**Is your feature request related to a problem? Please describe.** In order to run unit-like integration tests directly on functions it would be highly desirable to have some kind of...