in server.js [79:82]
static sendFile(response, filePath, mimeType, contentLength) {
response.writeHead(200, { 'Content-Type': mimeType, 'Content-Length': contentLength, ...userHeaders });
fs.createReadStream(filePath).pipe(response);
}