We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 84f7b5c commit 00f7cc6Copy full SHA for 00f7cc6
doc/api/stream.md
@@ -1692,6 +1692,13 @@ of a stream that are intended for use by consumers (as described in the
1692
[API for Stream Consumers][] section). Doing so may lead to adverse side effects
1693
in application code consuming the stream.
1694
1695
+Avoid overriding public methods such as `write()`, `end()`, `cork()`,
1696
+`uncork()`, `read()` and `destroy()`, or emitting internal events such
1697
+as `'error'`, `'data'`, `'end'`, `'finish'` and `'close'` through `.emit()`.
1698
+Doing so can break current and future stream invariants leading to behavior
1699
+and/or compatibility issues with other streams, stream utilities, and user
1700
+expectations.
1701
+
1702
### Simplified Construction
1703
<!-- YAML
1704
added: v1.2.0
0 commit comments