# debug-list

> Small utility for managing multiple visionmedia/debug

Latest version **1.0.2** (published 2015-01-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install debug-list
pnpm add debug-list
yarn add debug-list
bun add debug-list
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2015-01-07 |
| First published | 2015-01-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Ray Hwang |
| Maintainers | yargnawh |
| Keywords | debug, log |

## Links

- npm: https://www.npmjs.com/package/debug-list
- Repository: https://github.com/YarGnawh/debug-list
- Issues: https://github.com/YarGnawh/debug-list/issues
- npm.io page: https://npm.io/package/debug-list

## Dependencies (2)

- [util](https://npm.io/package/util.md) ^0.10.3
- [debug](https://npm.io/package/debug.md) ^2.1.1

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads
- [child-process-debug](https://npm.io/package/child-process-debug.md) — 695 weekly downloads

## Recent versions

- 1.0.2 (latest) — 2015-01-07
- 1.0.1 — 2015-01-07
- 1.0.0 — 2015-01-07

## README

# debug-list

  Small utility for managing multiple visionmedia/debug

## Installation

```bash
$ npm install debug-list --save
```

## Usage


Example _app.js_:

```js
var notepad = require('debug-list');

// fake app

notepad('booting %s', name);

notepad.add('http');
notepad.add('worker');
notepad.add('process');

http.createServer(function(req, res){
  notepad.http(req.method + ' ' + req.url);
  res.end('hello\n');
}).listen(3000, function(){
  notepad.http('listening');
});

// fake worker of some kind

require('./worker');
require('./process');
```

Example _worker.js_:

```js
var notepad = require('debug-list');

setInterval(function(){
  notepad.worker('doing some work');
}, 1000);
```

Example _process.js_:

```js
var debug = require('debug')('process');

setInterval(function(){
  debug('processing.... still works');
}, 1000);
```

---
_Source: https://npm.io/package/debug-list · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
