├── LICENSE ├── README.md └── _config.yml /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 oak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## awesome-oak 2 | 3 | This is a list of community projects related to [oak](https://oakserver.github.io/oak/) middleware and router server framework for Deno. 4 | 5 | If you know of resources that would be great to list here, just create a [pull request](https://github.com/oakserver/awesome-oak/pulls). 6 | 7 | ### Getting Started 8 | 9 | - [Official Site](https://oakserver.github.io/oak/) 10 | 11 | ### Middleware 12 | 13 | - [oak_middleware](https://oakserver.github.io/middleware/) a collection of maintained middleware for oak. 14 | - [view-engine](https://github.com/deligenius/view-engine) 🚀a Template View Engine for Deno frameworks. 15 | - [multiparser](https://github.com/deligenius/multiparser) a Deno module for parsing multipart/form-data. 16 | - [error handling & logging](https://github.com/halvardssm/oak-middleware-error-logger) a error handling middleware with logger. 17 | - [jwt](https://github.com/halvardssm/oak-middleware-jwt) a JWT validation middleware. 18 | - [oak_sessions](https://github.com/jcs224/oak_sessions) a session middleware for oak with support for Redis and many other storage engines. 19 | - [organ](https://github.com/denjucks/organ) a logging middleware based on the morgan middleware from ExpressJS. 20 | - [snelm]([https://github.com/denjucks/snelm](https://github.com/zer0tonin/snelm)) a security middleware ported from the helmet middleware from ExpressJS. 21 | - [validator](https://github.com/halvardssm/oak-middleware-validator) a validator for body content and url parameters. 22 | - [upload](https://github.com/hviana/Upload-middleware-for-Oak-Deno-framework) perform uploads, organize uploads to avoid file system problems and create dirs if not exists, perform validations and optimizes RAM usage when uploading large files using Deno standard libraries. 23 | - [oak-http-proxy](https://github.com/asos-craigmorten/oak-http-proxy) a proxy middleware for oak. 24 | - [oak-logger](https://deno.land/x/oak_logger) An exteremely easy and rich oak logger that color codes! 25 | - [serverless_oak](https://deno.land/x/serverless_oak) A handler for mapping AWS Api Gateway and Lambda to oak. 26 | - [oak-channels](https://github.com/ericls/oak-channels) A helper for writing real world websocket applications with group messaging support. 27 | - [oak-routing-ctrl](https://github.com/Thesephi/oak-routing-ctrl) routing-controllers -like library, providing TypeScript Decorators for easy scaffolding API projects 28 | - [zoic](https://github.com/oslabs-beta/zoic) a caching middleware with options for an in-memory or Redis cache. 29 | 30 | ### Examples/Templates/Boilerplates 31 | 32 | - [deno_crud_jwt](https://github.com/22mahmoud/deno_crud_jwt) 🦕 basic jwt implementation with CRUD operations using oak + postgres. 33 | - [deno-api-starter-oak](https://github.com/asad-mlbd/deno-api-starter-oak) Standard RESTful API project setup & examples with docker, MySQL, JWT, Swagger open API, DB migration, validation, and route guards. 34 | - [oak-routing-ctrl-cloudflare-worker](https://github.com/Thesephi/oak-routing-ctrl-cloudflare-worker) starter template to develop a Cloudflare Worker application with `oak` and `oak-routing-ctrl` libraries 35 | 36 | ### Testing 37 | 38 | - [superoak](https://github.com/asos-craigmorten/superoak) HTTP assertions for Oak made easy via SuperDeno. 39 | 40 | ### Tutorials 41 | 42 | - [FreeCodeCamp](https://www.freecodecamp.org/news/create-a-todo-api-in-deno-written-by-a-guy-coming-from-node/) Todo API tutorial using Deno and Oak 43 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal --------------------------------------------------------------------------------