color-util-logs

0.0.1 • Public • Published

color-util-logs

This package provides a way to have timestamped logs in three colors: cyan, red, and yellow. These colors correspond to notice, error, and warning.

I created this package because the other logging packages didn't offer the timestamp that you get when you use the node util.log method.

Installation

npm install color-util-logs

Use the command below if you want to have the package saved in your packages.json.

npm install color-util-logs --save

Uninstallation

npm uninstall color-util-logs

Use the command below if you want to have the package removed from your packages.json.

npm uninstall color-util-logs --save

Usage

This package exposes four new methods for displaying a timestamped color coded log entry and object inspection.

// Example
var log = require("color-util-logs");

// These three are very straightforward.
log.error("Something went wrong");
log.notice("We need to tell you something");
log.warn("Something not quite an error");

// inspect inspects the given object per util.inspect
log.inspect(util);

notice usage

warning usage

error usage

inspect usage

Credits

This is based on work done in collaboration with Dennis Harrison.

Support

You have a few options for getting support:

  • File an issue
  • Send a message to me on Twitter @digilord

License

The MIT License (MIT)

Copyright (c) 2013 D. Allen Morrigan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Donating

By donating you are supporting this package and its developer so that he may continue to bring you updates to this and other software he maintains.

Support us via Gittip

Readme

Keywords

none

Package Sidebar

Install

npm i color-util-logs

Weekly Downloads

1

Version

0.0.1

License

MIT

Last publish

Collaborators

  • digilord