0.0.3 • Published 7 years ago

koa-static-middleware v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Koa Static Middleware

logo

build status

Lightweight static files middleware for Koa2

Install

npm install -S koa-static-middleware

Usage

const Koa = require('koa');
const path = require('path');

const staticMiddleware = require('./libs/koa-static-middleware');

const app = new Koa();

app.use(staticMiddleware(path.join(__dirname, 'public')));

LICENSE

MIT