UNPKG

jin-app

Version:

A CLI app for taking simple notes without ever leaving the terminal.

11 lines (9 loc) 232 B
const chalk = require('chalk') const fs = require('fs') module.exports = function write (path, data) { fs.writeFileSync(path, JSON.stringify(data), err => { if (err) { console.log(chalk.red(err)) } }) }