UNPKG

bookiza

Version:

The book reification framework for the web

15 lines (10 loc) 285 B
import fse from 'fs-extra' import chalk from 'chalk' 'use strong' fse.readFile('./license.txt', 'utf8', (err, data) => { if (err) { return new Error('Couldn\'t read license information.') } console.log(chalk.magenta(data)) }) console.log(chalk.blue('Project is ready.'))