Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
ca6b414
module: optimize require performance
mapleeit Jun 12, 2018
21b14d2
module: fix bug when parent is null
mapleeit Jun 12, 2018
9e5c554
module: fix require.resolve case
mapleeit Jun 13, 2018
8941fb7
inspector: stop dragging platform pointer
Jun 8, 2018
2749460
doc: make Deprecation cycle explanation more brief
Trott Jun 13, 2018
772d390
deps: float ea7abee from openssl / CVE-2018-0732
rvagg Jun 12, 2018
0179e94
test: fix deprecation warning due to util.print
tniessen Jun 11, 2018
a703df9
crypto: fix behavior of createCipher in wrap mode
tniessen Jun 12, 2018
17e378b
perf_hooks: set bootstrap complete in only one place
jasnell Jun 3, 2018
b55f6a0
perf_hooks: remove less useful bootstrap marks
jasnell Jun 3, 2018
a24b691
workers,trace_events: set thread name for workers
jasnell Jun 10, 2018
dcad7c9
doc: switch the order of Writable and Readable
Jun 14, 2018
b505d2a
Revert "workers,trace_events: set thread name for workers"
jasnell Jun 15, 2018
0aa242e
doc: wrap releases.md at 80 chars
Trott Jun 15, 2018
0351f9a
doc: correct styling of _GitHub_ in onboarding doc
Trott Jun 15, 2018
0b27cb4
doc: remove linking of url text to url
Trott Jun 15, 2018
dc10ddf
doc: wrap pull-requests.md at 80 characters
Trott Jun 15, 2018
dabcd47
doc: wrap style guide at 80 characters
Trott Jun 15, 2018
ff00a76
tools: lint doc/*.md files
Trott Jun 15, 2018
859a8d1
doc: use Class Method label consistently
Trott Jun 15, 2018
f56c965
doc: fix heading of optional console method args
targos Jun 13, 2018
1da8855
doc: fix indentation in console.md
vsemozhetbyt Jun 16, 2018
1e54c24
http2: fix memory leak for uncommon headers
addaleax Jun 15, 2018
54ee8cb
src: remove unused argc var in node_stat_watcher
danbev Jun 15, 2018
1d8a231
process: implement process.hrtime.bigint()
joyeecheung Jun 11, 2018
7012950
doc: add davisjam to collaborators
davisjam Jun 11, 2018
452d73d
doc: remove obsolete wiki references from BUILDING
Trott Jun 16, 2018
b6b019f
doc: use imperative in COLLABORATOR_GUIDE
Trott Jun 15, 2018
a13eba7
tools: do not disable `quotes` rule in .eslintrc.js
Trott Jun 15, 2018
64de66d
net: emit 'close' when socket ends before connect
Jun 12, 2018
8fa640e
loader: remove unused error code in module_job
devsnek Jun 15, 2018
4970e2b
doc: eliminate _you_ from N-API doc
Trott Jun 18, 2018
8944a4f
test: move test-benchmark-path to sequential
Trott Jun 18, 2018
7ae718c
module: optimize require performance
mapleeit Jun 12, 2018
a8b24b6
module: fix bug when parent is null
mapleeit Jun 12, 2018
b5cbf39
module: fix require.resolve case
mapleeit Jun 13, 2018
4454a01
module: use internal cache instead of public one
mapleeit Jun 19, 2018
de6af7c
module: resolve conficts
mapleeit Jun 19, 2018
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
Prev Previous commit
Next Next commit
doc: switch the order of Writable and Readable
This change places the links to Writable stream and Readble stream
in the order these sections appear when scrolling down the screen.

PR-URL: #21333
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
Joseph Gordon authored and vsemozhetbyt committed Jun 15, 2018
commit dcad7c93fbdd6887e76e30ac99bb4d9a159659c8
4 changes: 2 additions & 2 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ the elements of the API that are required to *implement* new types of streams.

There are four fundamental stream types within Node.js:

* [`Readable`][] - streams from which data can be read (for example
[`fs.createReadStream()`][]).
* [`Writable`][] - streams to which data can be written (for example
[`fs.createWriteStream()`][]).
* [`Readable`][] - streams from which data can be read (for example
[`fs.createReadStream()`][]).
* [`Duplex`][] - streams that are both `Readable` and `Writable` (for example
[`net.Socket`][]).
* [`Transform`][] - `Duplex` streams that can modify or transform the data as it
Expand Down