npm i --save koa koa-static koa-send
import Koa from 'koa';
import staticServe from 'koa-static';
import send from 'koa-send';
const assetsPath = 'my/files/path';
const port = 9999;
const app = new Koa();
app.use(staticServe(assetsPath));
app.use(async ctx => {
await send(ctx, 'index.html', { root: assetsPath });
});
app.listen(port);
Сервак на Ноде, реакт для админки