1.0.7 • Published 6 years ago

swapez-auth v1.0.7

Weekly downloads
5
License
ISC
Repository
-
Last release
6 years ago

VNNG Auth

Authentication/Authorization for Swap-Ez's services

Installation

npm install swapez-auth --save

or

yarn add swapez-auth

Usage

const {initAuth, ROLE} = require('swapez-express');
const express = require('expressjs');

const app = express();
const repo = {
    findUserByEmail: function(){}
}

const auth = initAuth(app, { repo });