Jake Verbaten
Jake Verbaten
The `eslint` alternative would be the real killer tool to make me want to adopt `bun`. I want a cli tool that I can use to replace `eslint` ; `prettier`;...
@malandrew my thoughts are `h` should be consistent. i.e. ``` js h('div', 'some text'); h('div', { attrs }, 'some text'); h('div', { attrs }, [ h('child one') h('child two', {...
@malandrew I think `h('div', {} , [child])` is fine. At the end of the day children are an array anyway, you have to allocate that array when you pass it...
If we are going to pave a cowpath we should probably do a little better then this. We can change the `express-statsd` module to be ``` js var statsd =...
@mlmorg you are correct. What you really want is integration with a routing table -.- ``` statsd(req, res, { routePattern: x }) ``` Which should work fine. @mlmorg > -...
@arianvp I would like to encourage you to also open a PR upstream againts Matt-Esch/virtual-dom Having a standard className added on insertions by default might have a high amount of...
@evancz if you can't write todomvc in an hour then something is wrong.
I didn't mean to be rude. I can't express tone / humor. By all means take your time and don't rush things. Now that you mention it, it would be...
Ran into this issue myself too. Confused why `multistream([stream])` is the same as `multistream([{ level: 'info', stream }])`
https://github.com/pinojs/pino/blob/master/lib/multistream.js#L112 Yeah the default level is `'info'` and it cannot access or read the pino logger instance to get my level, could downgrade `'info'` to `'debug'` ; seems reasonable.