var express = require('express');
var app = express();
var port = 3300;
app.use(express.static(__dirname + '/index'));
app.get('/',function(req,res){
res.sendFile(__dirname + "file.html");
});
app.listen(port,function() {
console.log("server listening on port " + port);
})
** Сохраните html-файл и файл изображения в индексной папке, а затем получите к нему доступ, как указано выше.
В index / file.html
<img src='/img.png' />