Skip to content

Instantly share code, notes, and snippets.

@lennym
Created June 15, 2015 15:27
Show Gist options
  • Save lennym/360b64bbf989b9f6b699 to your computer and use it in GitHub Desktop.
Save lennym/360b64bbf989b9f6b699 to your computer and use it in GitHub Desktop.
function requestHandler(req, res) {
fs.readFile('/my/file', function (err, file) {
if (err) {
res.status(500).send();
} else {
res.send(file);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment