dot-reporter

0.0.2 • Public • Published

Describe event state with colorful dots

Start and completion of a task will show a dot on the console. The color of the dot can be customized according to the state of the event when the task ends.

This can useful for brief reporting on async requests:

    var DotReporter = require('dot-reporter').DotReporter,
        dot = new DotReporter(/* optional state to color mappings */);

    ...

    // Start a task
    dot.taskStart('taskID');
    makeARequest(function (err, data) {

        // ... Time passes before we get to here ...

        dot.taskEnd('taskID', data.endState);
    });

The default state map is:

    {
        start: 'white',
        end:   'green',
        err:   'red',
        bad:   'purple'
    }

The initial event state must always be called start.

Run npm test to see an example.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i dot-reporter

      Weekly Downloads

      71

      Version

      0.0.2

      License

      none

      Last publish

      Collaborators

      • aklt