koa-robotstxt
v1.0.10
Published
Robots.txt bounce middleware for koa
Downloads
437
Readme
koa-robotstxt
Koa middleware for serving the robots.txt file..
Installation
$ npm install koa-robotstxt
Example
var koa = require('koa');
var robotstxt = require('koa-robotstxt');
var app = koa();
app.use(robotstxt(__dirname + '/public/robots.txt'));
API
robotstxt(path, [options])
Returns a middleware serving the robots.txt found on the given path
.
options
maxAge
cache-control max-age directive in ms, defaulting to 1 day.
License
MIT