-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
49 lines (43 loc) · 1.15 KB
/
index.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
38
39
40
41
42
43
44
45
46
47
48
49
const express = require('express')
const cors = require('cors')
const figlet = require('figlet');
const path = require('path')
// Create the server
const app = express()
// Serve our api route /fig that returns a custom ascii text
app.get('/api/fig/:text', cors(), async (req, res, next) => {
try {
figlet(req.params.text, function(err, fig) {
if (err) {
console.log('Something went wrong...');
console.dir(err);
throw err
}
res.json({ fig })
});
} catch (err) {
next(err)
}
})
// Serve our base route that returns a Hello World figure
app.get('/api/fig/', cors(), async (req, res, next) => {
try {
figlet('Hello World!', function(err, fig) {
if (err) {
console.log('Something went wrong...');
console.dir(err);
throw err
}
res.json({ fig })
});
} catch (err) {
next(err)
}
})
// Serve static files from the React app
app.use(express.static(path.join(__dirname, 'client/build')));
// Choose the port and start the server
const PORT = process.env.PORT || 5000
app.listen(PORT, () => {
console.log(`Mixing it up on port ${PORT}`)
})