Skip to content

Commit d168d01

Browse files
committed
doc: properly inheriting from EventEmitter
There are so many buggy code out there, just because not inheriting properly from `EventEmitter`. This patch gives an official recommendation. PR-URL: #2168 Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Michaël Zasso <[email protected]>
1 parent 500f253 commit d168d01

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

doc/api/events.markdown

+17
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,20 @@ added.
162162
This event is emitted *after* a listener is removed. When this event is
163163
triggered, the listener has been removed from the array of listeners for the
164164
`event`.
165+
166+
### Inheriting from 'EventEmitter'
167+
168+
Inheriting from `EventEmitter` is no different from inheriting from any other
169+
constructor function. For example:
170+
171+
'use strict';
172+
const util = require('util');
173+
const EventEmitter = require('events').EventEmitter;
174+
175+
function MyEventEmitter() {
176+
// Initialize necessary properties from `EventEmitter` in this instance
177+
EventEmitter.call(this);
178+
}
179+
180+
// Inherit functions from `EventEmitter`'s prototype
181+
util.inherits(MyEventEmitter, EventEmitter);

0 commit comments

Comments
 (0)