espresso icon indicating copy to clipboard operation
espresso copied to clipboard

Minimal web framework for Deno

Results 3 espresso issues
Sort by recently updated
recently updated
newest added

I updated the entire library to use the modern Deno http server version 0.147.0. This did involve changing the project to the fetch [Request](https://developer.mozilla.org/en-US/docs/Web/API/Request) and [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response) under the hood, this...

https://github.com/disizali/espresso/blob/1700645c2228a242a3199acb3a54c1e678df338e/application.ts#L56 Never ever use `await` in async-iterator scope, because this will make concurrency problems. use `Promise.then()` or `ListenAndServe` API.

Tests are an integral part of building framework. I would like to take up this task of setting up basic tests.