master
{admin@attacker.club} 2023-10-08 16:59:54 +08:00
commit 25a0504f1d
2 changed files with 6 additions and 0 deletions

0
README.md Normal file
View File

6
testserver.js Normal file
View File

@ -0,0 +1,6 @@
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8888);