
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Express/Connect middleware to handle trailing slashes with options.
Why?
Why another remove trailing slash middleware? Because we wanted options. Like leaving the slash when serving the index file of a directory and custom index file names, etc!
npm install slashify --save
var express = require('express');
var slashify = require('slashify');
var app = express();
app.use(slashify());
app.listen(3000, function () {
});
options
root - the root directory. This is mostly used when you have a directory handling turned on and/or have custom index file names. Defaults to ./index - the name of the directory index file. Defaults to index.html.directory - set whether or not you want slashify to leave the trailing slash when serving the index file of a directory. Defaults to true. Set to false to remove the trailing slash for all paths.npm install
npm test
FAQs
Express/Connect middleware to handle trailing slashes with options
The npm package slashify receives a total of 36 weekly downloads. As such, slashify popularity was classified as not popular.
We found that slashify 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.