drmrbrewer
drmrbrewer
@iambumblehead any suggestions for an esm alternative to newrelic?
That looks interesting! However I'd prefer a library that does async/await out of the box (request doesn't, but I use a wrapper... bit clunky though). Would also be useful to...
@JustinBeckwith sure you're busy but would be great to have even some brief response on this one. Would be useful to all I'm sure. Thanks!
Super helpful, thanks!
@JustinBeckwith having been migrating the `auth` parameter of my previous options for the request module, I have discovered that there is slightly more to it than just turning it into...
Yep, no worries... I've already done the manual conversion into appropriate Authorisation headers so likely I wouldn't use an `auth` parameter in gaxios anytime soon anyway!
@JustinBeckwith on the same topic of transitioning from request... can gaxios do something equivalent to what is possible with request as described [here](https://stackoverflow.com/a/16924410/4070848) and [here](https://stackoverflow.com/a/20539239/4070848)?
So what would the gaxios equivalent of `request('http://google.com/').pipe(res)` and `req.pipe(request('http://google.com/')).pipe(res)` be?
@JustinBeckwith any hints on my question just above? I'll give the first one a go myself: const { request } = require('gaxios'); (await request({ url: 'http://google.com/', responseType: 'stream' })).data.pipe(res); What...
@JustinBeckwith sure you're busy, but would be great to know the answer to the above question on piping into and out of `gaxios`, as a replacement for the deprecated `request`...