31 lines
631 B
JavaScript
Executable File
31 lines
631 B
JavaScript
Executable File
// include file system module
|
|
var fs = require('fs');
|
|
|
|
var http = require('http');
|
|
|
|
// read posts
|
|
|
|
|
|
|
|
// http.createServer(function (req, res) {
|
|
// var html = buildHtml(req);
|
|
//
|
|
// res.writeHead(200, {
|
|
// 'Content-Type': 'text/html',
|
|
// 'Content-Length': html.length,
|
|
// 'Expires': new Date().toUTCString()
|
|
// });
|
|
// res.end(html);
|
|
// }).listen(8080);
|
|
//
|
|
// function buildHtml(req) {
|
|
// var header = '';
|
|
// var body = '';
|
|
//
|
|
// // concatenate header string
|
|
// // concatenate body string
|
|
//
|
|
// return '<!DOCTYPE html>'
|
|
// + '<html><head>' + header + '</head><body>' + body + '</body></html>';
|
|
// };
|