Last active
November 3, 2016 21:31
-
-
Save imkost/00f791c5f319f9a2ec903bcc56535bd4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const styles = fs.readFileSync('./styles.css'); | |
function server(req, res) { | |
const { url } = req; | |
if (url === '/styles.css') { | |
res.end(styles); | |
return; | |
} | |
res.end(App({ url })); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment