Skip to content

Commit

Permalink
Remove links to deleted example files
Browse files Browse the repository at this point in the history
The dedicated example files have been removed as per debug-js#650 

This change removes links in the README to those now deleted files.
  • Loading branch information
alshain committed Nov 24, 2019
1 parent 608fca9 commit 8d1e69a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -17,7 +17,7 @@ $ npm install debug

`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_](./examples/node/app.js):
Example _app.js_:

```js
var debug = require('debug')('http')
Expand All @@ -40,7 +40,7 @@ http.createServer(function(req, res){
require('./worker');
```

Example [_worker.js_](./examples/node/worker.js):
Example _worker.js_:

```js
var a = require('debug')('worker:a')
Expand Down Expand Up @@ -246,7 +246,7 @@ setInterval(function(){

By default `debug` will log to stderr, however this can be configured per-namespace by overriding the `log` method:

Example [_stdout.js_](./examples/node/stdout.js):
Example _stdout.js_:

```js
var debug = require('debug');
Expand Down

0 comments on commit 8d1e69a

Please sign in to comment.