Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sindresorhus/debug-log
Node.js 0.12 util.debuglog() ponyfill
https://github.com/sindresorhus/debug-log
deprecated
Last synced: 9 days ago
JSON representation
Node.js 0.12 util.debuglog() ponyfill
- Host: GitHub
- URL: https://github.com/sindresorhus/debug-log
- Owner: sindresorhus
- License: mit
- Archived: true
- Created: 2015-01-22T11:26:53.000Z (about 10 years ago)
- Default Branch: main
- Last Pushed: 2023-10-30T15:44:32.000Z (about 1 year ago)
- Last Synced: 2024-05-02T09:03:26.422Z (9 months ago)
- Topics: deprecated
- Language: JavaScript
- Size: 4.88 KB
- Stars: 19
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
- Security: .github/security.md
Awesome Lists containing this project
README
# Deprecated
This package is no longer relevant as Node.js 0.12 is unmaintained.
---
# debug-log [![Build Status](https://travis-ci.org/sindresorhus/debug-log.svg?branch=master)](https://travis-ci.org/sindresorhus/debug-log)
> Node.js 0.12 [`util.debuglog()`](http://nodejs.org/api/util.html#util_util_debuglog_section) [ponyfill](https://ponyfill.com)
## Install
```
$ npm install --save debug-log
```## Usage
```js
// example.js
var debugLog = require('debug-log')('foo');debugLog('unicorns & rainbows');
``````
$ node example.js```
```
$ NODE_DEBUG=foo node example.js
FOO 3245: unicorns & rainbows
```## API
See the [`util.debuglog()` docs](http://nodejs.org/api/util.html#util_util_debuglog_section).
## License
MIT © [Sindre Sorhus](http://sindresorhus.com)