Tommaso Allevi

Results 57 comments of Tommaso Allevi

Actually I'm using https://docs.rs/sloggers/0.3.2/sloggers/ because I would have different loggers. An example of usage can be found here: https://github.com/slog-rs/misc/blob/master/examples/features.rs. The primary feature of this kind of logger is the `child`:...

From my point of view, citing the router framework (aka request/sec) is not enough to choose the http framework. Probably we need to filter the list keeping the framework (or...

you are right. ``` $ echo 'foo' | pino-pretty foo ``` works fine. so, probable it is a problem of `node` itself?

I don't think so ``` $ node -e 'console.log(666)' | pino-pretty stdout is not a tty ```

yes ``` $ node -e 'console.log(666)' 666 ```

seems to be a worse scenario ``` $ echo 'foo' | node -e 'process.stdin.pipe(process.stout)' stdin is not a tty ``` Any suggestion? Just where / how to proceed here: I...

> I do not believe Bash as delivered by git for Windows is a true posix implementation. I _think_ it is based on Cygwin. You should try LFS for Windows....

Really thanks for your answers. Anyway, with PowerShell all the above commands work fine. So probably, this issue happens only with git bash. Can I send a PR for updating...

As said during the hangout, the appsfuel fork uses xdebug extension to know the code coverage. This extension is already integrate into the test suite.

> Use async / await where possible I saw many mixings with callbacks, use promisify when required. It's a great project to show the state of the art. good point...