Is this method suitable for your needs?
app.post('/bla',function(req,res,next){
Of course you need to use express / connect static middleware to get this example:
app.use(express.static(__dirname + '/path_to_static_root'));
UPDATE:
You can also simply transfer the contents of the stream file:
var fs = require('fs'); app.post('/bla',function(req,res,next){
source share