express-simple-csrf
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

An unofficial csrf protection for express.js
Simple but strong
You can use both Esm and Cjs

Install

  npm i express-simple-csrf
  yarn add express-simple-csrf
  pnpm i express-simple-csrf
  bun add express-simple-csrf

How to use ?

First you need to install cookie-parser and express-session

Cjs

const express = require("express");
const cookieParser = require("cookie-parser");
const session = require("express-session");
const { simpleCsrf } = require("express-simple-csrf");

Esm

import express from "express";
import cookieParser from "cookie-parser";
import session from "express-session";
import { simpleCsrf } from "express-simple-csrf";

Usage

const app = express();

app.use(cookieParser("secret"));
app.use(
  session({
    secret: "secret",
    saveUninitialized: false,
    resave: false,
    cookie: {
      path: "/",
      maxAge: 1000 * 60 * 15,
    },
  })
);
/*
  That simple
  hover on the function to see full options and description
*/
app.use(
  simpleCsrf({
    cookieOptions /* required */: { path: "/", maxAge: 1000 * 60 * 15 },
  })
);

app.get("/", (req, res) => {
  console.log(req.session, req.cookies);
  res.send("Unprotected");
});

app.post("/", (req, res) => {
  console.log(req.session, req.cookies);
  res.send("Protected");
});

app.listen(3000, () => {
  console.log("start");
});

Features

Full customizable, you can customize how to handle each request, by add csrf disable header, ignored methods or paths and the middleware is very simple to use

How it work?

Algorithm

Dependencies (1)

Dev Dependencies (9)

Package Sidebar

Install

npm i express-simple-csrf

Weekly Downloads

112

Version

1.0.1

License

ISC

Unpacked Size

616 kB

Total Files

24

Last publish

Collaborators

  • ryn__bsd