-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
43 lines (36 loc) · 1.01 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
const express = require('express');
const https = require('https');
const { Buffer } = require('node:buffer');
// image path: You can change url of image
const imageURL = 'https://placehold.co/600x400/000000/FFFFFF/jpeg';
// size limit 2kb
const sizeLimit = 2048;
const app = express();
//image routing
app.get('/image', (req, res) => {
//make a request
const proxyReq = https.get(imageURL, (proxyRes) => {
let data = Buffer.from([]);
proxyRes.on('data', (chunk) => {
if (data.length < sizeLimit) {
data = Buffer.concat([data, chunk], data.length + chunk.length);
} else {
proxyRes.destroy();
}
});
proxyRes.on('end', () => {
// only 2kb
if (data.length >= sizeLimit) res.send(data.subarray(0, sizeLimit));
else res.send(data);
});
});
proxyReq.on('error', (err) => {
res.status(500).send('Error downloading image');
});
});
//root routing: client html
app.get('/', (req, res) => {
res.send("<img src='/image'>");
});
//host
app.listen(3000);