0.0.3 • Published 9 years ago

static-nocase v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

static-nocase

NPM Version NPM Downloads

Install

$ npm install statc-nocase

API

var static = require('static-nocase')

static(root, options)

Create a new middleware function to serve files from within a given root directory. The file to serve will be determined by combining req.url with the provided root directory. When a file is not found, instead of sending a 404 response, this module will instead call next() to move on to the next middleware, allowing for stacking and fall-backs.

Examples

Serving using express

var app = require('express')(),
    static = require('./static-nocase')

app.use(static(__dirname + '/static'))

// Listen
server.listen(3000)

License

MIT