Tanner

Results 158 comments of Tanner

Any updates on this or ideas on how the community could help? We currently use MKDocs for https://docs.vapor.codes/3.0/ and we would love to localize them.

You can also have event loop specific storage using something like this: https://github.com/vapor/async-kit/blob/master/Sources/AsyncKit/ConnectionPool/EventLoopGroupConnectionPool.swift#L42. Would be nice if the helpers made it easy to do: application, request, and event loop specific...

This could be possible, if we can figure out a sensible way for the closure to handle a failed future. Something like logging the error then closing the WebSocket? I'm...

This should be possible by using NIO's Network.framework integration. I did a proof of concept here: https://github.com/vapor/vapor/pull/2123

I agree, this would be a nice feature to have. Do you have any ideas on what a good API for that might look like @lmcd?

Yeah any ideas you have for API would be appreciated.

We'd probably need to use a serialization format which includes a type identifier, like: ```json { "type": "todo", "data": { "completed": false, ... } } ``` Then that could automatically...

From Discord, these seem like the best options in terms of variable naming: - LOG_LEVEL - SERVER_HOSTNAME - SERVER_PORT - VAPOR_ENV

@siemensikkema no this feature hasn't been added yet. I'm still waiting for feedback on #2200 before I move forward with implementing. The 4.0 release process is also taking priority over...

I've been considering having a type like `AribtraryJSON` (I even did a test implementation of that here: https://github.com/vapor/vapor/commit/b7786e8a60c71c2e86765eacd9f403f076a081b8). This could be useful for situations where the JSON payload is highly...