1.0.0 • Published 8 years ago
zero-to-one-static v1.0.0
egg-static
Static server plugin for egg, base on koa-static-cache.
Install
$ npm i egg-static --saveUsage
egg-static is a plugin that has been built-in for egg. But it is disabled by default.
// {app_root}/config/plugin.js
exports.static = true;Configuration
egg-static support all configurations in koa-static-cache. and with default configurations below:
- prefix:
/public/ - dir:
path.join(appInfo.baseDir, 'app/public') - dynamic:
true - preload:
false - maxAge:
31536000in prod env,0in other envs - buffer:
truein prod env,falsein other envs
egg-static provides one more option:
- maxFiles: the maximum value of cache items, only effective when dynamic is true, default is
1000.
All static files in $baseDir/app/public can be visited with prefix /public, and all the files are lazy loaded.
- In non-production environment, assets won't be cached, your modification can take effect immediately.
- In production environment,
egg-staticwill cache the assets after visited, you need to restart the process to update the assets. - Dir default is
$baseDir/app/publicbut you can also define multiple directory by usedir: [dir1, dir2, ...]and static server will use all these directories.
// {app_root}/config/config.default.js
exports.static = {
// maxAge: 31536000,
};Questions & Suggestions
Please open an issue here.
License
1.0.0
8 years ago