Skip to content

Instantly share code, notes, and snippets.

View mutaimwiti's full-sized avatar
🕵️‍♂️
JavaScripting

Mutai Mwiti mutaimwiti

🕵️‍♂️
JavaScripting
View GitHub Profile
@joshnuss
joshnuss / app.js
Last active March 4, 2024 00:01
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 "./authorization"; // middleware for checking if user's role is permitted to make request
const app = express(),
api = express.Router();
// first middleware will setup db connection