@codexist/status-reports

Log status updates with specific coloring and styling

Usage no npm install needed!

<script type="module">
  import codexistStatusReports from 'https://cdn.skypack.dev/@codexist/status-reports';
</script>

README

Status Reports

This is simply a package that simplifies status updates in the log output. Just to make all logging for status updates more uniform.

Install

$ npm install @codexist/status-reports

Usage

const statusReporter = require('@codexist/status-reports');

statusReporter.success('Database successfully synced');

All Options

const statusReporter = require('@codexist/status-reports');

statusReporter.success(string, [...string]);
statusReporter.error(string, [...string]);
statusReporter.warn(string, [...string]);
statusReporter.info(string, [...string]);