Skip to content
Snippets Groups Projects
Commit 0f39f91d authored by Arianna Montoya's avatar Arianna Montoya
Browse files

testing stuff

parent 82e30aa7
No related branches found
No related tags found
No related merge requests found
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello World!');
}).listen(8080);
// run 'node testing.js in terminal and open http://localhost:8080/ to see contents of page
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment