2.0.0 • Published 6 years ago

express-security.txt v2.0.0

Weekly downloads
1,470
License
ISC
Repository
github
Last release
6 years ago

Build Status

NPM

node-security.txt

Usage

Install with:

npm i express-security.txt -S

Add to your app with:

const express = require('express')
const securityTxt = require('express-security.txt')

const app = express()

app.get('/security.txt', securityTxt({
  // your security address
  contact: [
    'mailto:email@example.com',
    'tel:+123456789'
   ],
  // your pgp key
  encryption: https://example.com/security.gpg',
  // if you have a hall of fame for securty resourcers, include link here
  acknowledgements: 'https://acknowledgements.example.com'
}))