root.js 171 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 const fs = require ('fs'); var root = function (req, res) { fs.readFile('./public/index.html',function(data){ res.send(data) }); } module.exports = root;