DevTobias / elysia-helmet

Help secure Elysia apps with various HTTP headers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Elysia Helmet

Helmet helps secure Elysia apps by setting HTTP response headers. This is a port of the official helmet plugin for express.

πŸ§‘β€πŸ’» Install

bun add elysia-helmet

πŸ‘‹ Getting Started

Here's a sample Elysia app that uses Helmet:

import { Elysia } from 'elysia';
import { helmet } from 'elysia-helmet';

new Elysia().use(helmet()).listen(3000);

For more configuration options, please refer to the original helmet documentation.

πŸ”“ License

This software ist distributed under the MIT license. For more information you can have a look at the license file.

About

Help secure Elysia apps with various HTTP headers

License:MIT License


Languages

Language:TypeScript 100.0%