From 9f33c9a8a84636ae1c46489e10b2e919b9551f36 Mon Sep 17 00:00:00 2001 From: "Andrew E. Rhyne" Date: Fri, 10 Feb 2017 11:24:08 -0800 Subject: [PATCH] added slackin --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c57ddfa..0b7b5fd5 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # debug -[![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) +[![Build Status](https://travis-ci.org/visionmedia/debug.svg?branch=master)](https://travis-ci.org/visionmedia/debug) [![Coverage Status](https://coveralls.io/repos/github/visionmedia/debug/badge.svg?branch=master)](https://coveralls.io/github/visionmedia/debug?branch=master) [![Slack](https://rauchg-slackin-yybwjekgeo.now.sh/badge.svg)](https://rauchg-slackin-yybwjekgeo.now.sh/) + A tiny node.js debugging utility modelled after node core's debugging technique. @@ -13,7 +14,7 @@ $ npm install debug ## Usage -`debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle the debug output for different parts of your module as well as the module as a whole. +`debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle the debug output for different parts of your module as well as the module as a whole. Example _app.js_: