Revert "coisas"

This reverts commit 45c1b37e57.
This commit is contained in:
José Valdiviesso 2019-03-09 18:02:34 +00:00
parent 7751140a1c
commit ed591eec6f
1 changed files with 7 additions and 0 deletions

7
api/app.js Normal file
View File

@ -0,0 +1,7 @@
var http = require('http');
//create a server object:
http.createServer(function (req, res) {
res.write('Hello World!'); //write a response to the client
res.end(); //end the response
}).listen(49152); //the server object listens on port 8080