Is there Node.js ready-to-use tool (installed with npm), that would help me expose folder content as file server over HTTP.
npm
Example, if I have
Take a look on that link.
You need only to install express module of node js.
node js
var express = require('express'); var app = express(); app.use('/Folder', express.static(__dirname + '/Folder'));
You can access your file like http://hostname/Folder/file.zip