clean-urls

Express/Connect middleware to serve static files from cleaner, extensionless urls

MIT 18 个版本
安装
npm install clean-urls
yarn add clean-urls
pnpm add clean-urls
bun add clean-urls
README

clean-urls

Express/Connect middleware to serve static files from cleaner, extensionless urls.

Clean urls are only used for .html files. Useful for sites like blogs that are generated from static site generators such as Jekyll.

Install

npm install clean-urls --save

Usage

var express = require('express');
var cleanUrls = require('clean-urls');

var app = express();

app.use(cleanUrls(['/app/**']));

app.listen(3000, function () {
  
});

cleanUrls([rules, options])

  • rules - OPTIONAL - this is where you define which paths get treated for clean urls. Values can be blank, true, false, a glob-like string (/app/**/*.html), or an array of globs.
  • options
    • root - root directory of your static files. This is used to determine if the url maps a static file and to serve those static files.
    • index - name if the directory index file. Defaults to index.html. This is used to redirect you to the directory url instead of the index url and to serve the index file if it is a directory url.

Run Tests

npm install
npm test
版本列表
1.1.5 2014-10-07
1.1.4 2014-10-04
1.1.3 2014-10-03
1.1.2 2014-10-02
1.1.1 2014-10-02
1.1.0 2014-10-02
1.0.6 2014-09-29
1.0.5 2014-09-29
1.0.4 2014-09-29
1.0.3 2014-09-29
1.0.2 2014-09-18
1.0.1 2014-09-17
1.0.0 2014-09-11
0.3.1 2014-09-11
0.3.0 2014-08-29
0.2.0 2014-08-06
0.1.1 2014-07-18
0.1.0 2014-07-18