Egg: 有没有应用启动完成的回调?

Created on 12 Dec 2017  ·  3Comments  ·  Source: eggjs/egg

类似app.afterStart,或者其它方式

Most helpful comment

// app.js
module.exports = app => {
  app.messenger.once('egg-ready', () => {
  });
}

All 3 comments

// app.js
module.exports = app => {
  app.messenger.once('egg-ready', () => {
  });
}

app.messenger.once('egg-ready', (app) => { console.log('app started');});

console打印了8次

8个 worker

Was this page helpful?
0 / 5 - 0 ratings