Skip to content

Instantly share code, notes, and snippets.

@imkost
Last active November 3, 2016 21:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imkost/12f282bd1b0bc2a3a1835ae276d118b1 to your computer and use it in GitHub Desktop.
Save imkost/12f282bd1b0bc2a3a1835ae276d118b1 to your computer and use it in GitHub Desktop.
const fs = require('fs');
function server(req, res) {
const { url } = req;
if (url === '/styles.css') {
res.end(fs.readFileSync('./styles.css'));
return;
}
res.end(App({ url }));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment