Skip to content

Instantly share code, notes, and snippets.

@imkost
Created November 2, 2016 21:50
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/6358e02a589f0a8b066e547ab3a1ded3 to your computer and use it in GitHub Desktop.
Save imkost/6358e02a589f0a8b066e547ab3a1ded3 to your computer and use it in GitHub Desktop.
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