UNPKG

imboard

Version:

Most convenient platform for webpage development.

19 lines (17 loc) 288 B
var fs = require('fs'); module.exports.getData = function(filepath) { try { return fs.readFileSync(filepath).toString(); } catch(e) { return false; } }; module.exports.render = function(req, res, data) { res.writeHead(200, {"Content-Type" : "text/html"}); res.end(data); };