npm i express-security.txt -S
const express = require('express')
const securityTxt = require('express-security.txt')
const app = express()
app.get('/security.txt', securityTxt({
// your security address
contact: [
'mailto:[email protected]',
'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'
}))