i5ting / koa-generator

Koa' application generator for 1.x and 2.x( Express-style and support all middlewares include async/await )
https://github.com/17koa/koa-generator
MIT License
972 stars 110 forks source link

Deprecated use of generators #31

Closed kristianmandrup closed 7 years ago

kristianmandrup commented 7 years ago

$ ./bin/run

koa deprecated Support for generators will been removed in v3. See the documentation for examples of how to convert old middleware https://github.com/koajs/koa/tree/v2.x#old-signature-middleware-v1x app.js:23:5
libertyAlone commented 7 years ago

wrap koa-static with koa-convert like this:

app.use(convert(require('koa-static')(__dirname + '/public')));

tomoat commented 7 years ago

image

image