-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
37 lines (32 loc) · 1.13 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* eslint-disable no-console */
const express = require('express');
const next = require('next');
const fetch = require('isomorphic-unfetch');
const { parse } = require('url');
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();
// abstracted the endpoint getter for easier interchange
// originalEndPoint is `https://webbtc.com/block/${query}.json`
const getApiEndpoint = query => `https://blockchain.info/rawblock/${query}`;
app.prepare()
.then(() => {
const server = express();
// proxy for API calls to evade CORS restrictions
server.get('/search/', async (req, res) => {
const parsedUrl = parse(req.url, true);
const { query } = parsedUrl;
const data = await fetch(getApiEndpoint(query.q))
.then(response => response.json()).catch(e => console.error(e));
res.send(data);
});
server.get('*', (req, res) => handle(req, res));
server.listen(3000, (err) => {
if (err) throw err;
console.log('> Ready on http://localhost:3000');
});
})
.catch((ex) => {
console.error(ex.stack);
process.exit(1);
});