Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • npm
  • Socket score

Version published
Weekly downloads
1.9K
increased by133.91%
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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc