0.0.4 • Published 10 years ago

koa-npm v0.0.4

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

Koa-npm

Require global npm module middleware for Koa.

Installation

$ npm install koa-npm

Example

var koa = require('koa');
var npm = require('koa-npm');
var app = koa();

app.use(npm(app));

app.use(function *() {
  this.body = 'npm@' + this.app.npm.version + '\n' + this.app.npmRootPath;
})

app.listen(3000);
console.log('listening on port 3000');

License

MIT

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago