Skip to content

Instantly share code, notes, and snippets.

@rjpkuyper
Last active November 27, 2021 13:47
Show Gist options
  • Save rjpkuyper/ab88d6fa948878aa3518439f117b6453 to your computer and use it in GitHub Desktop.
Save rjpkuyper/ab88d6fa948878aa3518439f117b6453 to your computer and use it in GitHub Desktop.
const http = require('http');
const cats = [
{
name: 'meow',
age: 1,
breed: 'cat'
}
]
const requestListener = function (req, res) {
res.writeHead(200);
res.end(JSON.stringify(cats));
}
const server = http.createServer(requestListener);
server.listen(3000, "0.0.0.0");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment