This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/routes.js

39 lines
957 B
JavaScript
Raw Normal View History

2016-04-29 05:25:37 +00:00
const path = require('path');
import httpErrors from 'http-errors';
import Koa from 'koa';
import Router from 'koa-router';
import sendfile from 'koa-sendfile';
const koa = new Koa();
const router = new Router();
// // error handler
// koa.use(async (ctx, next) => {
// try {
// await next();
// } catch (err) {
// ctx.status = err.status || 500;
// ctx.body = err.message;
// }
// });
// Frontend
router.get('/service-worker.js', async (ctx) => {
ctx.set('Content-Type', 'application/javascript');
const stats = await sendfile(ctx, path.join(__dirname, 'static/service-worker.js'));
if (!ctx.status) ctx.throw(httpErrors.NotFound());
});
router.get('*', async (ctx) => {
const stats = await sendfile(ctx, path.join(__dirname, './static/dev.html'));
2016-04-29 05:25:37 +00:00
if (!ctx.status) ctx.throw(httpErrors.NotFound());
});
koa.use(router.routes());
// 404 handler
koa.use(async () => {
throw httpErrors.NotFound();
});
export default koa;