Skip to content

Instantly share code, notes, and snippets.

View jalakpatoliya's full-sized avatar
🎯
Focusing

Patoliya Jalak M. jalakpatoliya

🎯
Focusing
View GitHub Profile
@jalakpatoliya
jalakpatoliya / app.js
Created July 30, 2020 15:56 — forked from joshnuss/app.js
Express.js role-based permissions middleware
// the main app file
import express from "express";
import loadDb from "./loadDb"; // dummy middleware to load db (sets request.db)
import authenticate from "./authentication"; // middleware for doing authentication
import permit from "./permission"; // middleware for checking if user's role is permitted to make request
const app = express(),
api = express.Router();
// first middleware will setup db connection