You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

clean-urls

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clean-urls

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

1.1.5
latest
Source
npmnpm
Version published
Weekly downloads
155
109.46%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

divshot

FAQs

Package last updated on 07 Oct 2014

Did you know?

Socket

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.

Install

Related posts