9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
|
const http = require('http');
|
||
|
|
||
|
const server = http.createServer(function(req, res){
|
||
|
res.writeHead(200);
|
||
|
res.end('Hello World!!');
|
||
|
});
|
||
|
|
||
|
server.listen(8080);
|
||
|
console.log('http zerbitzaria lanean 8080 atakan...');
|