Package Exports
- koa-static-with-post
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 (koa-static-with-post) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
koa-static
Static file serving middleware.
Installation
$ npm install koa-staticAPI
var koa = require('koa');
var app = koa();
app.use(require('koa-static')(root, opts));rootroot directory string. nothing above this root directory can be servedoptsoptions object.
Options
maxageBrowser cache max-age in milliseconds. defaults to 0hiddenAllow transfer of hidden files. defaults to falseindexDefault file name, defaults to 'index.html'deferIf true, serves afteryield next, allowing any downstream middleware to respond first.
Example
var serve = require('koa-static');
var koa = require('koa');
var app = koa();
// $ GET /package.json
app.use(serve('.'));
// $ GET /hello.txt
app.use(serve('test/fixtures'));
// or use absolute paths
app.use(serve(__dirname + '/test/fixtures'));
app.listen(3000);
console.log('listening on port 3000');License
MIT