加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.js 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
王福鹏 提交于 2020-01-06 15:38 . Initial commit
require('regenerator-runtime/runtime');
const server = require('umi-server');
const Koa = require('koa');
const compress = require('koa-compress');
const mount = require('koa-mount');
const { join, extname } = require('path');
const isDev = process.env.NODE_ENV === 'development';
const root = join(__dirname, 'dist');
const render = server({
root,
polyfill: false,
dev: isDev,
stream: true,
});
const app = new Koa();
// 压缩数据
app.use(
compress({
threshold: 2048,
flush: require('zlib').Z_SYNC_FLUSH,
}),
);
app.use(async (ctx, next) => {
const ext = extname(ctx.request.path);
// 符合要求的路由才进行服务端渲染,否则走静态文件逻辑
if (!ext) {
ctx.type = 'text/html';
ctx.status = 200;
const { ssrStream } = await render({
req: {
url: ctx.request.url,
},
});
ctx.body = ssrStream;
} else {
await next();
}
});
app.use(mount('/dist', require('koa-static')(root)));
if (!process.env.NOW_ZEIT_ENV) {
app.listen(4150);
console.log('http://localhost:4150');
}
module.exports = app.callback();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化