$ npm install bug-killer
Simple way to log messages in stdout or other stream.
$ npm i --save bug-killer
// Dependencies
var Debug = require("bug-killer");
// Set log level
Debug.config.level = 4;
// Test defaults
Debug
.log("A fancy error message", "error")
.log("Info messages are useful", "info")
.log("Hey, you've got a warning", "warn")
;
// Don't show date
Debug.config.date = false;
Debug.log("Display date is disabled.", "info");
// Custom type
Debug.config.myType = {
color: [0, 255, 200]
, text: "custom"
};
Debug.log("This is a custom message type", "myType");
Debug.log(new Error("Some error"));
Debug.log("Some interesting message");
// The built-in methods can be accessed like this, too:
Debug.error("This is an error.");
Debug.info("This is an info message.");
Debug.warn("This is a warning.");
Debug.log("This is a log message.");
// Logging objects works nicely too:
Debug.log({
name: {
name: "Johnny",
last: "B"
}
});
There are few ways to get help:
log(message, type)
Displays debug messages by providing the type.
Usage:
BugKiller.log("Some info message");
BugKiller.log(new Error("Interesting error"));
The config object can be modified to make this module to act diferently. Defaults are shown:
BugKiller.config = {
// The error type
error: {
color: [192, 57, 43]
, text: "error"
, level: 1
}
// The warning type
, warn: {
color: [241, 196, 15]
, text: "warn "
, level: 2
}
// The info type
, info: {
color: [52, 152, 219]
, text: "info "
, level: 3
}
// Display date
, date: false
// Log level
, level: 4
// Output stream
, stream: process.stdout
// The options passed to `util.inspect`
, inspectOptions: { colors: true }
};
message
: The debug message that should be displayed. If message
is an object, it will show the inspected object.type
: The message type (e.g. "error", "info" etc). Default is computed ("error"
if the message is an Error
) or "info"
if the provided
type
is invalid.BugKiller
instance.getDate()
Returns the stringified date. This method can be overrided for a custom date format.
error(message)
Displays debug messages by providing setting the type to "error"
.
Usage:
BugKiller.error("Some error message");
message
: The debug message that should be displayed. If message
is an object, it will show the inspected object.BugKiller
instance.warn(message)
Displays debug messages by providing setting the type to "warn"
.
Usage:
BugKiller.warn("Some warn message");
message
: The debug message that should be displayed. If message
is an object, it will show the inspected object.BugKiller
instance.info(message)
Displays debug messages by providing setting the type to "info"
.
Usage:
BugKiller.info("Some info message");
message
: The debug message that should be displayed. If message
is an object, it will show the inspected object.BugKiller
instance.Have an idea? Found a bug? See how to contribute.
I open-source almost everything I can, and I try to reply everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
Starring and sharing the projects you like :rocket:
—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:
—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6
Thanks! :heart:
If you are using this library in one of your projects, add it in this list. :sparkles:
3abn
—A 3ABN radio client in the terminal.a-csv
(by jillix)—A lightweight CSV parser.babel-it
—Babelify your code before npm publish
.bible
—Read the Holy Bible via the command line.birthday
—Know when a friend's birthday is coming.blah
—A command line tool to optimize the repetitive actions.bloggify-cli
—CLI for Bloggify.bloggify-tools
—Interactive command line tool to help you win at Bloggify.cdnjs-importer
—Easy way to import a library into CDNJS.cli-gh-cal
—GitHub like calendar graphs in command line.diable
—Daemonize the things out.engine-tools
(by jillix)—Engine Tools library and CLI app.fwatcher
—Watch files for changes.ghcal
—See the GitHub contributions calendar of a user in the command line.gif-cli
—Gif animations in your terminal!git-issues
(by Gabriel Petrovay)—Git issues extension to list issues of a Git projectgit-stats
—Local git statistics including GitHub-like contributions calendars.git-stats-importer
—Imports your commits from a repository into git-stats history.git-unsaved
—Scan your projects directory for dirty git repositories.github-colors
—GitHub colors and file extensions mappinggithub-labeller
—Automagically create issue labels in your GitHub projects.github-stats
—Visualize stats about GitHub users and projects in your terminal.gpm
—npm + git = gpm - Install NPM packages and dependencies from git repositories.idea
—A lightweight CLI tool and module for keeping ideas in a safe place quick and easy.image-to-ascii-cli
—View images in text format, in your terminal.name-it
—Generate project names from given keywords.namy
—Gets the name of the exported function.npmreserve
—Reserve package names on NPM.regarde
—A tiny tool and library to watch commands.repo-downloader
—Download all the repositories from BitBucket and GitHub, including your account, teams and where you created pull requests.repository-downloader
—Download all the repositories from BitBucket and GitHub, including your account, teams and where you created pull requests.share-term
—Share the terminal with your friends.ship-release
—Publish new versions on GitHub and npm with ease.ssh-remote
—Automagically switch on the SSH remote url in a Git repository.statique
—A Node.JS static server module with built-in cache options and route features.tinyreq-cli
—A cli tool for making http(s) requests. CLI for tinyreq.tithe
—Organize and track the tithe payments.web-term
—A full screen terminal in your browser.wrabbit
(by jillix)—Wrap scripts by providing the wrapping function.xhr-form-submitter-test
—Test application for XHR form submitter JavaScript library© 2010 - cnpmjs.org x YWFE | Home | YWFE