const Promise = require('promise'); const sql = require('../utils/sql'); module.exports= { /** * Responsible for querying the database and displaying all * categories that the blog has in the sidebar * * @param res * @return {*|Promise} */ main: function(res) { return new Promise(function(resolve, reject) { res.write("
"); res.write("
\n" + "\n" + "

Categories

\n" + "\n" + "
"); res.write("
"); res.write("
    "); sql.getCategories().then(function(categories) { console.log(categories[0].name); categories.forEach(function(cat) { //res.write(cat.name); console.log(cat); res.write("" + cat.name + ""); res.write("
    "); }); res.write("
"); res.write("
"); resolve(); }) }); } };