-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathserver.js
62 lines (53 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import express from 'express';
import morgan from 'morgan';
import bodyParser from 'body-parser';
const app = express();
const port = process.env.PORT || 8080;
//Log with Morgan
app.use(morgan('dev'));
//accept encoded data as well as json format
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));
//Static files
app.use(express.static(__dirname + '/dist'));
const imageList = [
{
key: 0,
url: "https://process.filestackapi.com/sharpen/negative/sb5RRdoQiiy5l5JUglB1"
},
{
key: 1,
url: "https://process.filestackapi.com/sharpen/oil_paint/urjTyRrAQA6sUzK2qIsd"
},
{
key: 2,
url: "https://process.filestackapi.com/sepia/modulate/wxYyL4yQyyRH1RQLZ6gL"
},
{
key: 3,
url: "https://process.filestackapi.com/blur/pixelate/O9vo0AynTNaNZlRyRBUm"
},
{
key: 4,
url: "https://process.filestackapi.com/blackwhite/kcirovLQC2eJmA6pkrMD"
},
{
key: 5,
url: "https://process.filestackapi.com/sharpen/modulate/5V2ZH22ZTWGXv2lMvvVT"
}
];
app.route('/image')
.get((req, res) => res.json(imageList))
.post((req, res) => {
const { url } = req.body;
imageList.push({
key: imageList.length,
url
});
res.json({
success: 1,
message:'Image Successfully added!'
});
});
app.listen(port);
console.log(`listening on port ${port}`);