How to disable the "x-powered-by" header in Express
March 24, 2020
Express generates a header to your responses that says x-powered-by: Express
.
If you want to clean up your headers, just add:
app.disable("x-powered-by")
at the top of your javascript file.
Subscribe to my newsletter!
A weekly round-up of new blog posts and updates to projects I’m working on.