Express has a built in middleware for this. It's part of connect, which express is built on. The middleware itself uses send.
// just add the middleware to your app stack via `use`
app.use(express.static(yourpath));
In answer to your comment, no, there is no way to manually select files. Though by default the middleware will ignore folders prefixed with .
, so for example a folder named .hidden
would not be served.
To hide files or folders manually, you could insert your own middleware before static
to filter out paths before the request reaches it. The following would prevent serving any files from folders named hidden
:
app.use(function(req, res, next) {
if (//hidden/*/.test(req.path)) {
return res.send(404, "Not Found"); // or 403, etc
};
next();
});
app.use(express.static(__dirname+"/public"));
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…