Giter VIP home page Giter VIP logo

logdown's Introduction

Logdown Travis CI David DM

Logdown is a debug utility for the browser and the server with Markdown support. It does not have any dependencies and is only 2K gzipped.

You can see it in action in the example page or in the preview below.

Preview

Browser

Server

Using

The simplest use of the library in both platforms could be done as follows:

If on the server, install it through npm:

npm install --save logdown

In the browser you can use as in the server if you use Browserify, or you can just download it here and put the dist/index.js file in your public folder.

// In the browser
var logger = new Logdown({prefix: 'foo'})

And then use it.

// In the server-side or client-side with Browserify
var Logdown = require('logdown')
var logger = new Logdown({prefix: 'foo'})

It is highly recommended to use a prefix for your instance, this way you get a nice prefixed message on console and it is possible to silence instances based on the prefix name, as we will see after.

After creating your object, you can use the regular log, warn, info and error methods as we have on console, but now with Markdown support.

logger.log('lorem *ipsum*')
logger.info('dolor _sit_ amet')
logger.warn('consectetur `adipiscing` elit')

You can pass multiple arguments

logger.log('lorem', '*ipsum*')
logger.info('dolor _sit_', 'amet')
logger.warn('consectetur', '`adipiscing` elit')

New objects

The constructor accepts one object for configuration on instantiation time.

opts.prefix

Type: 'String'

Default: ''

var logger = new Logdown({prefix: 'foo'})
logger.log('Lorem ipsum') // Will use console.log with a prefix

You should use the name of your module. You can, also, use : to separate modules inside one big module.

var fooBarLogger = new Logdown({prefix: 'foo:bar'})
fooBarLogger.log('Lorem ipsum')

var fooQuzLogger = new Logdown({prefix: 'foo:quz'})
fooQuzLogger.log('Lorem Ipsum')

opts.markdown

Type: 'Boolean'

Default: true

If setted to false, markdown will not be parsed.

var logger = new Logdown({markdown: false})
logger.log('Lorem *ipsum*') // Will not parse the markdown

For Markdown, the following mark-up is supported:

// Bold with "*"" between words
logger.log('lorem *ipsum*')

// Italic with "_" between words
logger.log('lorem _ipsum_')

// Code with ` (backtick) between words
logger.log('lorem `ipsum`')

Enabling/disabling instances

It is possible to enable/disable the output of instances using the Logdown.disable or Logdown.enable methods.

Logdown.disable('foo') // will disable the instance with *foo* prefix
Logdown.enable('bar') // will enable the instance with *bar* prefix

You can also use wildcards.

Logdown.enable('*') // enables all instances
Logdown.disable('*') // disables all instances
Logdown.enable('foo*') // enables all instances with a prefix starting with *foo*

Use - to do a negation.

// enables all instances but the one with *foo* prefix
Logdown.enable('*', '-foo')
// disables all intances with foo in the prefix, but don't disable *foobar*
Logdown.disable('*foo*', '-foobar')

Logging all errors

You can show errors, even if a particular logger is disabled.

// create a logger that even if disabled will output .error messages
new Logdown({ prefix: 'foo', logAllErrors: true })
// set logAllErrors flag on all loggers (static method)
Logdown.logAllErrors(true)

This is helpful if you are not interested in normal logs, but still want to have any unexpected runtime information logged.

Support

Browser

Chrome Firefox IE Opera Safari
Latest ✔ Latest ✔ 9+ ✔ Latest ✔ 8.0+ ✔

Server

io.js logo
0.10+ ✔ 1.0+ ✔

Credits

Contributors

101 Caio Gondim     97.1%
1   Bent Cardan     1.0%
1   Dan Lukinykh    1.0%
1   Gleb Bahmutov   1.0%

License

The MIT License (MIT)

Copyright (c) 2015 Caio Gondim

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.

logdown's People

Contributors

bahmutov avatar caiogondim avatar dan-luk avatar reqshark avatar

Watchers

 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.