what is oak? #27446
Unanswered
mindplay-dk
asked this question in
Q&A
what is oak?
#27446
Replies: 1 comment 1 reply
-
Deno comes with a built-in server, but not with a built-in router. Using a router is pretty much the first thing people will be looking for, hence the recommendation to go with a framework.
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
various Deno tutorials and templates frequently use something called oak.
I see on the home page that it provides middleware and a router, but Deno has a built-in server, and this article even says "Deno recommends using Oak for building web servers" - but middleware (to my mind, in the first place) doesn't need to be much more than
request => response
functions that you compose and bootstrap at launch.the home page doesn't explain much, it just points to the generated API reference documentation - this being the only real documentation, it's difficult to know where to start, or how much you need to learn.
by the looks of it, this is similar to dozens of other existing, established frameworks?
is everyone using this for their new Deno projects? why? is it good? 🙂
Beta Was this translation helpful? Give feedback.
All reactions