broker

Express/Connect middleware that serves local or remote static files

MIT 8 个版本
安装
npm install broker
yarn add broker
pnpm add broker
bun add broker
README

broker

Express/Connect middleware that serves local or remote static files.

Install

npm install broker --save

Usage

Serve static files

var express = require('express');
var broker = require('broker');

var app = express();

app.use(broker({
  root: '/public'
}));

app.listen(3000, function () {

});

Proxy remote files

var express = require('express');
var broker = require('broker');

var app = express();

app.use(broker({
  root: 'http://proxyserver.com'
}));

app.listen(3000, function () {

});

broker([options])

  • options - the options are similar to the send module because it uses this to serve local static files. Here are a few:
    • root - the root directory if serving local files or the url to prepend to requests to proxy remote static files
    • index - a string or array of strings that define the directory index file
    • dotfiles - how to handle files that begin with a dot. These are usually hidden files. The default value is ignore. Available options:
      • allow - No special treatment for dotfiles
      • deny - Send a 403 for any request for a dotfile
      • ignore - Pretend like the dotfile does not exist and 404

Run Tests

npm install
npm test
版本列表
1.0.1 2014-09-17
1.0.0 2014-09-11
0.4.1 2014-09-11
0.4.0 2014-08-29
0.1.3 2011-05-21
0.1.2 2011-05-16
0.1.1 2011-05-16
0.1.0 2011-05-16