oak
oak copied to clipboard
A middleware framework for handling HTTP with Deno, Node, Bun and Cloudflare Workers 🐿️ 🦕
I have so far been unable to sort out [this issue]( https://github.com/oakserver/oak/issues/148). I have a code that uses the MongoDb driver and whenever a do a fetch operation, i can...
I'm passing in a string, which should, according to the readme, calculate a strong etag and setting weak to `false` ```ts await etag.calculate(myString, { weak: false }) ``` Result is...
It seems like you don't need to await on form–data body value. While it probably does not hurt, the linter gets mad about it The same may relate to the...
Here's the error I'm hitting when trying to run through this example https://deno.land/manual/testing/coverage : error: Relative import path "http" not prefixed with / or ./ or ../ Steps to repro:...
Resolve #486 This PR replaces `examples/static/50MB.zip` with a file created via `dd if=/dev/zero bs=1024 count=50000 > examples/static/50MB.zip` and can be compressed pretty well by Git. As long as the example...
I'm using a gateway and need my requests to be cached by the gateway, but oak is adding a `vary` header to the response (most probably added by the http...
This is an attempt to fix #356 in case any implementation from upstream (deno std library) is not to be expected
Hi! I want to serve an API with Oak that requires a [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request) and returns a [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response). I need to wrap this in an Oak request. I found that the...
Just a small piece of feedback based on something I spend around 2 hours on ```typescript import { Application, Router, ServerSentEvent, } from 'https://deno.land/x/oak/mod.ts' const app = new Application() const...