0.1.1 • Published 8 years ago

winston-pretty-console v0.1.1

Weekly downloads
21
License
Apache-2.0
Repository
github
Last release
8 years ago

winston-pretty-console

Node Version Npm Package Version License NodeJS Package Dependencies Build Status Code Climate Test Coverage

A winston transport based on cli-color, pretty-error for pretty console output

TOC

Installation

npm install --save winston-pretty-console

Quick Start

var winston = require('winston');
var options = {};
winston.add(require('winston-pretty-console'), options);

or

var winstonPrettyConsole = require('winston-pretty-console');
var options = {};
var logger = new(winston.Logger)({
    transports: [new(winstonPrettyConsole)(options)]
});

API

see http://adoyle.me/winston-pretty-console/

Versioning

The versioning follows the rules of SemVer 2.0.0.

BUT, anything may have BREAKING CHANGES at ANY TIME when major version is zero (0.y.z), which is for initial development and the public API should not be considered stable.

For more information on SemVer, please visit http://semver.org/.

Copyright and License

Copyright (c) 2016 ADoyle. The project is licensed under the Apache License Version 2.0.

See the LICENSE file for the specific language governing permissions and limitations under the License.

See the NOTICE file distributed with this work for additional information regarding copyright ownership.