Package Exports
- ecstatic
- ecstatic/lib/ecstatic/status-handlers
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ecstatic) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Ecstatic
A simple static file server middleware that works with both Express and Flatiron
- Built-in simple directory listings
- Shows index.html files at directory roots when they exist
- Use it with a raw http server, express/connect, or flatiron/union!
Examples:
express
var express = require('express');
var ecstatic = require('../');;
var app = express.createServer();
app.use(ecstatic(__dirname + '/public'));
app.use(ecstatic.showdir(__dirname + '/public'));
app.listen(8080);
console.log('Listening on :8080');union
var union = require('union');
var ecstatic = require('../');
union.createServer({
before: [
ecstatic(__dirname + '/public'),
ecstatic.showdir(__dirname + '/public')
]
}).listen(8080);
console.log('Listening on :8080');API:
ecstatic(folder);
Pass ecstatic a folder, and it will return your middleware!
middleware(req, res, next);
This works more or less as you'd expect.
ecstatic.showdir(folder);
This returns another middleware which will attempt to show a directory view. At the moment, you must add this explicitly for union and connect middleware stacks, so that one may chose actions other than showing a directory view if desired.
Tests:
npm testContributing:
This is still "beta" quality, and you may find bugs. Please give me a heads-up if you find any! Pull requests encouraged.
License:
MIT/X11.