Pictures!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sendfile.js 266B

123456789101112131415
  1. var fs = require("fs");
  2. var mimetype = require("./mimetype");
  3. module.exports = sendfile;
  4. function sendfile(res, path) {
  5. res.writeHead(200, {
  6. "content-type": mimetype(path)
  7. });
  8. fs.createReadStream(path)
  9. .on("error", err => error(err, res))
  10. .pipe(res);
  11. }