Personal blog written from scratch using Node.js, Bootstrap, and MySQL. https://jrtechs.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

49 lines
1.2 KiB

/**
* Main server file for the blog. This file is responsible for
* creating the server and listening for clients. The main run
* function parses the url and calls a sub module to make the
* appropriate pages.
*/
const http = require('http');
const url = require('url');
const includes = require('./includes/includes.js');
http.createServer(function (request, res)
{
var q = url.parse(request.url, true);
var filename = q.pathname;
//handles image requests
if(filename.includes("/img/"))
{
require("./img/image.js").main(res, filename);
}
else
{
var file = "";
if(filename.includes("/category")) //single category page
file = "../posts/category.js";
else if(filename.includes("/admin")) //top secret admin page
file = "./admin/admin.js";
else //single post page
file = "./posts/posts.js";
includes.printHeader(res).then(function()
{
return require(file).main(res, filename, request);
}).then(function()
{
return includes.printFooter(res);
}).then(function()
{
console.log("fin"); //for debugging
})
}
}).listen(8080);