An open API service indexing awesome lists of open source software.

https://github.com/buffolander/brdu-authorizer

This is a lightweight middleware for Express that handles authentication and authorization requests based on Firebase user tokens as well as fixed tokens created for server-to-server requests
https://github.com/buffolander/brdu-authorizer

express express-authorizations express-middleware typescript

Last synced: 9 months ago
JSON representation

This is a lightweight middleware for Express that handles authentication and authorization requests based on Firebase user tokens as well as fixed tokens created for server-to-server requests

Awesome Lists containing this project

README

          

# -brdu-authorizer
This is a lightweight authentication and authorization middleware for Express based on Firebase user tokens and fixed tokens (server-to-server requests)

## Module implementation

```bash
npm i -g npm
npm i --save @brdu-authorizer
```

Implemented as an Express.js middleware…

```javascript
const express = require('express')
const authorizer = require('@serinus-authorizer')
```