yeps-helmet

1.0.1 • Public • Published

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

Dependencies (3)

Dev Dependencies (15)

Package Sidebar

Install

npm i yeps-helmet

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • evheniy.bystrov