Giter Site home page Giter Site logo

sanderhouttekier / acho Goto Github PK

View Code? Open in Web Editor NEW

This project forked from achojs/acho

0.0 1.0 0.0 109 KB

A extremely (but powerful) simple logging system for NodeJS and browser.

License: MIT License

JavaScript 15.06% CoffeeScript 76.23% Shell 8.71%

acho's Introduction

acho

acho

Build Status Dependency status Dev Dependencies Status NPM Status Gittip

An extremely (but powerful) simple logging system for NodeJS and browser.

Why

  • Extremely basic and easy to use, customize and extend.
  • Expressive API with chaineable methods.
  • Mininum dependencies, just focused in one thing.

Install

npm install acho

If you want to use in the browser (powered by Browserify):

bower install acho --save

and later link in your HTML:

<script src="bower_components/acho/dist/acho.js"></script>

Usage

First steps

For use it, basically you need to create a new logger instance.

var Acho = require('acho');
var acho = new Acho({color: true});

It's time to use it!

acho.info('hello world');
// => 'hello world'

All public methods for use the library are chaineables:

acho
.info('hello world')
.error('something bad happens');
// => 'info: hello world'
// => 'error: 'something bard happens'

Maybe you don't want output the message, but store it and for later use it can be a good idea:

acho.push('success', 'good job!');
console.log(acho.messages.success);
// => ['good job']

If you want to print later, just call the method print:

acho.print()
// => 'success: good job!'

At this moment maybe you are thinking: Can I combine print the message with store the message? Absolutely!

acho.add('info', 'this message is printed and stored');
// => 'info: 'this message is printed and stored'
console.log(acho.messages.info)
// => ['this message is printed and stored']

You also can redefine the print method, not exist limits!

acho.print = function() {
  // You are in the acho scope, so you can use the properties
  // of the object. Check the API documentation.
  console.log();
  var _this = this;
  Object.keys(this.types).forEach(function(type) {
    // if (isSuccessOrInfoMessage(type)) console.log();
    _this.messages[type].forEach(function(message) {
      _this.printLine(type, message);
    });
  });
};

Do whatever you need for adapt the library of yours requisites: changes colors, add more types, sort the priorities... the internal structure of the object is public and you can edit dynamically. You have the power.

Stablish the level

Stablishing the level of your logs is a good way to avoid some information that maybe you don't want to output. The error levels are:

  • error: Display calls to .error() messages.
  • warning: Display calls from .error(), .warning() messages.
  • success: Display calls from .error(), .warning(), success() messages.
  • info: Display calls from .error(), .warning(), success(), info() messages.
  • verbose: Display calls from .error(), .warning(), success() info(), verbose() messages.
  • debug: Display calls from .error(), .warning(), success() info(), verbose() debug() messages.
  • silly: Display calls from .error(), .warning(), success() info(), verbose() debug() silly() messages
  • silent: Avoid all.

The default log level is info. You can do it in the the constructor:

var acho = new Acho({level: 'silly'})

or in any time:

acho.level = 'debug';

Customization

By default the messages structure is minimal: Just the message type followed by the content of the message.

But you can easily customize it, for example, adding an timestamp for each message.

For do it, we offer two methods, outputType and outputMessage:

acho = new Acho({
  color: true,
  level: 'silly',
  outputType: function(type) {
    return '[' + type + '] »';
  },

  outputMessage: function(message) {
    return Date() + ' :: ' + message;
  }
});

Now is moment to your awesome output:

acho.info('I have hungry');
// => '[ info ] » Fri Mar 13 2015 18:12:48 GMT+0100 (CET) :: I have hungry'

You can change how to output the message in the constructor or in any time.

API

.constructor({Object} [options])

Create a new logger. The options that you can provide are:

  • color {Boolean}: If you can colorize the otuput. false by default.
  • level {String}: Stablish the logging level. info by default.
  • types {Object}: You can provide the types and priorities.
  • outputType {Function}: For customize the type in the output.
  • outputMessage {Function}: For customize the message in the output.
  • print {Function}: Provide a function for print the messages.

.push({String} <type>, {String} <message>)

Store internally a type message.

.add({String} <type>, {String} <message>)

Store internally a type message and also output it.

.error({String} <message>)

Output a error message.

.warning({String} <message>)

Output a warning message.

.success({String} <message>)

Output a success message.

.info({String} <message>)

Output a info message.

.verbose({String} <message>)

Output a verbose message.

.debug({String} <message>)

Output a debug message.

.silly({String} <message>)

Output a silly message.

.isPrintable({String} <type>)

Determines if a type of message should be outputted.

.colorize({String} <color> {String} <message>)

Determines is a instance of acho is outputted with colors.

.printLine({String} <type> {String} <message>)

Combine .isPrintable and .colorize for print a line correctly.

.print()

Default loop for print the messages that are stored internally. By default uses .printLine in each message iteration.

License

MIT © Kiko Beats

acho's People

Contributors

kikobeats avatar

Watchers

Sander Houttekier avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.