Jonas Auer

Results 33 comments of Jonas Auer

Coming from Koa and without looking too deep into Oak's documentation, having a single State object shared between each and every request goes right past all my expectations. This just...

> I believe this is already possible through just defining a property to `request` e.g. `ctx.request["user"] = someUser`. And I am not really sure how and where `defaultRequestState` would be...

I'm encountering that same issue. It occurs every time I'm using comments before defining a model: - Works: ```prisma model ModelA { // Comment id Int @id } ``` -...

Hmmm, not quite sure why the Travis build fails. It's [only one](https://travis-ci.org/ReactiveX/RxCpp/jobs/604480678?utm_medium=notification&utm_source=github_status) and it fails to install `g++-8`, which all other runners have had no problems with.

I just came across the same issue myself. I solved it by building a Docker image from the current master branch (the one on Docker Hub appears to not be...

Hi there! Apart from the `*_test.ts` files, this module does not directly depend any other modules, not even ones from the `std` library. I'm using `fetch` for all outgoing HTTP...

That's... weird. Looks like the `cli.js dev` process doesn't work on CI, but it definitely _works on my machine™_. Edit: it might have to to with the `env` property replacing...

[Since v15.4.0 Node.js comes with `AbortController` out of the box](https://nodejs.org/api/globals.html#class-abortcontroller), so that's probably why it still works even after removing this package.

Ugh, I just love how hard it seems to be for authorization servers to properly implement the OAuth2 standard :sweat_smile: [The OAuth2 spec](https://www.rfc-editor.org/rfc/rfc6749#section-5.1) requires the token response to have this...

I'm not quite sure how to move forward on this one. The userinfo endpoint isn't really part of the OAuth 2.0 spec and lives in the [OpenID Connect](https://openid.net/specs/openid-connect-core-1_0.html#UserInfo) spec instead....