Introduction Deno’s module, oak, is a web framework inspired by Koa.
I’ve created and released oak_decorators, a module for implementing APIs using decorators using oak, and I’d like to use it to create a Nest.js-like API server. How to implement? 1. Create a Contoroller Create a class that handles requests with the @Contoroller() decorator.
You can add processing to…