A tool for badcode.rocks
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Piglatin/piglatin.js

8 lines
256 B

var piglatin = require('pig-latin');
var http = require('http');
server = http.createServer(function (req, res) {
res.write(piglatin(req.url.replace("/","")));
});
server.listen(8124, "0.0.0.0");
console.log('Server running at http://127.0.0.1:8124/');