UNPKG

egg

Version:

A web framework's framework for Node.js

49 lines (40 loc) 922 B
'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;