1.0.1 • Published 7 years ago

yeps-helmet v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
7 years ago

YEPS helmet

It helps you secure your YEPS apps by setting various HTTP headers

NPM

npm version Build Status Coverage Status Linux Build Windows Build

Dependency Status devDependency Status NSP Status

License GitHub stars GitHub forks GitHub issues Twitter

How to install

npm i -S yeps-helmet

How to use

const App = require('yeps');

const error = require('yeps-error');
const logger = require('yeps-logger');
const server = require('yeps-server');
    
const helmet = require('yeps-helmet');

const app = new App();

app.all([
    error(),
    logger(),
    helmet(),
]);

server.createHttpServer(app);

Or with options:

app.all([
    helmet({...}),
]);

See helmet documentation.

YEPS documentation