egg/lib/loader/app_worker_loader.js
William.Tung a634334757
chore: comments fix (#5222)
Fix for some comments in the codes.
2023-06-22 09:32:06 +08:00

49 lines
922 B
JavaScript

'use strict';
const EggLoader = require('egg-core').EggLoader;
/**
* App worker process Loader, will load plugins
* @see https://github.com/eggjs/egg-loader
*/
class AppWorkerLoader extends EggLoader {
/**
* loadPlugin first, then loadConfig
* @since 1.0.0
*/
loadConfig() {
this.loadPlugin();
super.loadConfig();
}
/**
* Load all directories in convention
* @since 1.0.0
*/
load() {
// app > plugin > core
this.loadApplicationExtend();
this.loadRequestExtend();
this.loadResponseExtend();
this.loadContextExtend();
this.loadHelperExtend();
this.loadCustomLoader();
// app > plugin
this.loadCustomApp();
// app > plugin
this.loadService();
// app > plugin > core
this.loadMiddleware();
// app
this.loadController();
// app
this.loadRouter(); // Depend on controllers
}
}
module.exports = AppWorkerLoader;