Answers for "node send file"

1

sendfile express syntax

app.get('/', function(req, res){
  res.sendFile('index.html');
});
Posted by: Guest on March-20-2020
0

node send file

var http = require('http'),
    fileSystem = require('fs'),
    path = require('path');

http.createServer(function(request, response) {
    var filePath = path.join(__dirname, 'myfile.mp3');
    var stat = fileSystem.statSync(filePath);

    response.writeHead(200, {
        'Content-Type': 'audio/mpeg',
        'Content-Length': stat.size
    });

    var readStream = fileSystem.createReadStream(filePath);
    // We replaced all the event handlers with a simple call to readStream.pipe()
    readStream.pipe(response);
})
.listen(2000);
Posted by: Guest on June-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language