pinafore/server.js

24 lines
601 B
JavaScript
Raw Normal View History

2018-01-07 00:51:25 +01:00
const fs = require('fs');
const app = require('express')();
const compression = require('compression');
const sapper = require('sapper');
const static = require('serve-static');
2018-01-19 06:29:12 +01:00
const { PORT = 4002 } = process.env;
2018-01-07 00:51:25 +01:00
// this allows us to do e.g. `fetch('/api/blog')` on the server
const fetch = require('node-fetch');
global.fetch = (url, opts) => {
if (url[0] === '/') url = `http://localhost:${PORT}${url}`;
return fetch(url, opts);
};
app.use(compression({ threshold: 0 }));
app.use(static('assets'));
app.use(sapper());
app.listen(PORT, () => {
console.log(`listening on port ${PORT}`);
});