makemehapi
Version:
Self guided workshops to teach you about hapi.
18 lines (12 loc) • 303 B
JavaScript
var Fs = require('fs');
var Path = require('path');
var Colors = require('colors-tmpl');
function credits () {
Fs.readFile(Path.join(__dirname, './credits.txt'), 'utf8', function (err, data) {
if (err) {
throw err;
}
console.log(Colors(data));
});
}
module.exports = credits;