ariketari dagokion index.js fitxategia
This commit is contained in:
parent
350828e346
commit
5124690b03
15
index.js
15
index.js
@ -1,12 +1,9 @@
|
|||||||
const express = require('express');
|
const http = require('http');
|
||||||
const app = express();
|
|
||||||
|
|
||||||
app.set('port', 8080);
|
const server = http.createServer(function(req, res){
|
||||||
|
res.writeHead(200);
|
||||||
app.get('/', (req, res) => {
|
res.end('Hello World!!');
|
||||||
res.status(200).send('Hello World!!');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
app.listen(app.get('port'), () => {
|
server.listen(8080);
|
||||||
console.log('Zerbitzaria martxan ' + app.get('port') + ' atakan');
|
console.log('http zerbitzaria lanean 8080 atakan...');
|
||||||
});
|
|
Loading…
Reference in New Issue
Block a user