Created
November 2, 2016 21:50
-
-
Save imkost/6358e02a589f0a8b066e547ab3a1ded3 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
function server(req, res) { | |
const { url } = req; | |
if (url === '/') { | |
res.end('Main'); | |
} else if (url === '/about') { | |
res.end('About'); | |
} else { | |
res.end('404'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment