Skip to content
This repository was archived by the owner on May 25, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ node_js:
- "8"
after_script:
- npm run coveralls
notifications:
webhooks: https://app.fossa.io/hooks/travisci
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Pass this resulting function any type of object, including functions.

## Example

(In these examples package.json has a name of `super-server`)
(In these examples package.json has a name of `super-server` which you can see in the output)

Basic Example

```js
const debug = require('debug3')('http');
debug('This is a debug test!', [1, 2, 3]);

debug('This is a debug test!', [1, 2, 3]);
// Output: **super-server:http** This is a debug test! [1, 2, 3]

```
Expand Down