Skip to content

Instantly share code, notes, and snippets.

@kusakawazeusu
Created August 14, 2021 08:05
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 kusakawazeusu/f283b58dbfab12674807fa145783d605 to your computer and use it in GitHub Desktop.
Save kusakawazeusu/f283b58dbfab12674807fa145783d605 to your computer and use it in GitHub Desktop.
simple server makes memory leak
const http = require("http");
const requests = [];
http.createServer((request, response) => {
requests.push(request)
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(3000);
console.log('Server running at http://127.0.0.1:3000/');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment