From b5c158f966fe7a62c4d640865d447e9a28a2bdf0 Mon Sep 17 00:00:00 2001 From: Serguei Okladnikov Date: Fri, 8 Oct 2021 10:52:43 +0300 Subject: [PATCH 1/2] docs: add reference to adapter for micro --- docs/docs/adapters.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/adapters.rst b/docs/docs/adapters.rst index c302d34..76c3c6d 100644 --- a/docs/docs/adapters.rst +++ b/docs/docs/adapters.rst @@ -8,11 +8,14 @@ The *oauth2-server* module is typically not used directly but through one of the - express-oauth-server_ for Express_ - koa-oauth-server_ for Koa_ +- micro-oauth-server_ for Micro_ .. _express-oauth-server: https://npmjs.org/package/express-oauth-server .. _Express: https://npmjs.org/package/express .. _koa-oauth-server: https://npmjs.org/package/koa-oauth-server .. _Koa: https://npmjs.org/package/koa +.. _micro-oauth-server: https://npmjs.org/package/micro-oauth-server +.. _Micro: https://npmjs.org/package/micro Writing Adapters From 3aac055308bf7a2b435530208ac8c056bc4853cb Mon Sep 17 00:00:00 2001 From: Serguei Okladnikov Date: Fri, 8 Oct 2021 10:54:41 +0300 Subject: [PATCH 2/2] docs: add reference to adapter for micro --- docs/docs/getting-started.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/docs/getting-started.rst b/docs/docs/getting-started.rst index ff2c115..0563f51 100644 --- a/docs/docs/getting-started.rst +++ b/docs/docs/getting-started.rst @@ -16,10 +16,11 @@ oauth2-server_ is available via npm_. $ npm install oauth2-server -.. note:: The *oauth2-server* module is framework-agnostic but there are several officially supported adapters available for popular HTTP server frameworks such as Express_ and Koa_. If you're using one of those frameworks it is strongly recommended to use the respective adapter module instead of rolling your own. +.. note:: The *oauth2-server* module is framework-agnostic but there are several officially supported adapters available for popular HTTP server frameworks such as Express_, Koa_ and Micro_ . If you're using one of those frameworks it is strongly recommended to use the respective adapter module instead of rolling your own. .. _Express: https://npmjs.org/package/express-oauth-server .. _Koa: https://npmjs.org/package/koa-oauth-server +.. _Micro: https://npmjs.org/package/micro-oauth-server .. _features: