You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rootPath {string} optional rewrite path, (defaults to "/")
notFoundFile {string} optional default file to serve if requested static is missing
log {boolean} request access log to console
last {boolean} don't execute any downstream middleware. (defaults to true)
maxage Browser cache max-age in milliseconds. (defaults to 0)
hidden Allow transfer of hidden files. (defaults to false)
index Name of the index file to serve automatically when visiting root location. (defaults to "index.html", use "" to disable)
gzip Try to serve the gzipped version of a file automatically when gzip
is supported by a client and if the requested file with .gz extension exists.
(defaults to true)
// example 'web' directory// web/index.html// web/file.txtvarserve=require('koa-static-server')varapp=require('koa')()// root index support// GET /// returns index.html// GET /file.txt// returns file.txtapp.use(serve({rootDir: 'web'}))// folder support// GET /web/// returns /web/index.html// GET /web/file.txt// returns /web/file.txtapp.use(serve({rootDir: 'web',rootPath: '/web'}))// index support// GET /// returns /file.txtapp.use(serve({rootDir: 'web',index: 'file.txt'}))// rewrite support// GET /web/// returns 404// GET /admin// returns /admin/index.htmlapp.use(serve({rootDir: 'web',rootPath: '/admin'}))app.listen(3000)console.log('listening on port 3000')