public_html/zad1.js

12 lines
327 B
JavaScript

var http = require('http')
var path = require('path')
var fs = require('fs')
http.createServer((req, res) => {
res.writeHead(200, {"Content-Type": "text/html"});
fs.createReadStream(path.resolve(__dirname, 'index.html')).pipe(res);
}).listen(49376);
console.log('running...');
console.log('http://localhost:49376/');