Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
express-force-https-schema
Advanced tools
configurable express middleware that forces https schema based on x-forwarded-proto header
$ npm install express-force-https-schema
Very simple configurable express middleware that forces https schema based on x-forwarded-proto header.
The x-forwarded-proto is used by Heroku, AWS ELB and others to tell which schema the request was made with.
import { forceHttpsSchema } from "express-force-https-schema";
const app = express();
app.use(
forceHttpsSchema({
enabled: process.env.FORCE_HTTPS === "true",
skipUserAgents: /ELB-HealthChecker/i
})
);
Key | Default |
---|---|
enabled | true |
userAgentHeader | user-agent |
schemaHeader | x-forwarded-proto |
skipUserAgents | null |
npm test
FAQs
configurable express middleware that forces https schema based on x-forwarded-proto header
The npm package express-force-https-schema receives a total of 313 weekly downloads. As such, express-force-https-schema popularity was classified as not popular.
We found that express-force-https-schema demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.