Maciej Małecki
d6b4766a78
doc: document arguments for 'error' event on a stream
Fixes #6361 .
11 years ago
Kevin Simper
70cc9968f6
doc: clarify factory methods for net.Socket
11 years ago
Jakob Gillich
92518892ec
docs: fix non-string ignore note in path.resolve
Reviewed-By: Fedor Indutny <fedor@indutny.com>
11 years ago
Sam Roberts
96b166f291
doc: console.trace takes a message format
Documentation claimed it accepted a single label argument, as time and
timeEnd do, which was incorrect.
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Maurice Butler
71fc4d9486
doc: added X.json to the LOAD_AS_FILE sudo code
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Sam Roberts
e2f2a20279
doc: fix console.assert docs, message is a format
Documentation for console.assert incorrectly described message as a
single message, but it is a format.
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Brian White
c7c904b1fc
doc: fix createCipher description
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
11 years ago
Ben Noordhuis
72dcc26c7a
doc: buffer: clarify typed array construction
It's possible to construct a typed array from a buffer but the buffer
is treated as an array, not a byte array as one might expect.
Fixes #7786 .
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
11 years ago
Chris Barber
715bb7f89f
doc: fixed wording in child_process
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Yazhong Liu
e86c9421ef
doc: document url `slashes` property
Slashes should be documented, because 3rd-party protocols -- those
postfixed with `://` -- would incorrectly `format` and `parse` if they
didn't set/get the `slashes` option.
Signed-off-by: Timothy J Fontaine <tjfontaine@gmail.com>
11 years ago
Calvin Metcalf
31150df92a
doc: clarify `end` vs `finish` in streams
Adds a section to the transform stream docs to clarify the
difference between the `end` event and the `finish` events.
Also clarifies the wording on the `end` event.
11 years ago
Forrest L Norvell
793c76e5c6
docs: add cautionary note to emitter.removeAllListeners
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Julian Gruber
0ee99565f9
doc: fix missing link in net api
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Julian Gruber
b0fa931e07
doc: fix order in net api
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
William Bert
bfb7de5e75
docs: fix links to streams
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Brian White
c2d32f4c0e
doc: add missing space
Signed-off-by: Fedor Indutny <fedor@indutny.com>
11 years ago
Dominic Tarr
cdc093b31f
docs: correct tls docs. server -> client
when a pfx file is passed to tls.connection,
it is the client private key, not the server's private key.
11 years ago
Goh Yisheng (Andrew)
47bed4828c
doc: typo clean up in tls
11 years ago
Shuhei Kagawa
43a29f53ca
doc: remove an unused arg in process.stdin.
The argument of process.stdin's readable event handler is not used.
11 years ago
Nicolas Talle
1efe6837b2
doc: update assert.markdown
Update assert.throws() and assert.doesNotThrow() docs
11 years ago
Timothy J Fontaine
cc56c62ed8
build: readd missing installer resources
This were accidentally moved during the website refactor
11 years ago
Anton Khlynovskiy
1fa5cff4f2
docs: clarify process.stdin and old mode
12 years ago
Pedro Ballesteros
1d734a75b5
doc: stdout blocking or non-blocking behaviour
Makes clear that the behaviour of stdout is blocking
in Linux/Unix even when they refer to pipes.
11 years ago
Raynos
abbde2fafa
doc: mention objectMode for Writable streams
12 years ago
Timothy J Fontaine
86b8d84811
doc: re-add node.1 man page
The man page was accidentally removed in 37376de
for the website
refactor, bring it back.
Fixes #7117
11 years ago
Timothy J Fontaine
37376debe5
website: move website to joyent/node-website
The website will no longer be living in the source repository instead
it can be found at http://github.com/joyent/node-website
11 years ago
Christian
b222374b07
doc: changed timer id to object
fix #7074
11 years ago
Brian White
3595139b51
doc: fix diffieHellman.getGenerator() description
11 years ago
Timothy J Fontaine
e3d8359021
website: update cla email address
11 years ago
Benjamin Waters
d2147c55c2
doc: fix references to error keyword
References for err.signal and err.code should be error.signal and
error.code.
Fixes joyent/node#6862
11 years ago
Maxime Quandalle
154d9d2163
doc: add an example about multiple extensions
`path.extname` returns only the last extension
11 years ago
Timothy J Fontaine
a98d541733
blog: Post for v0.11.11
11 years ago
Wyatt Preul
8c05570258
docs: clarify origin in agent.maxSockets section
12 years ago
Fedor Indutny
0ec3770767
doc: readline document TTY utils
fix #6933
11 years ago
Scott González
9975ff603b
doc: fix typo in readline
11 years ago
Timothy J Fontaine
5aebc73525
blog: Post for v0.10.25
11 years ago
Timothy J Fontaine
1d57a5caa4
blog: nodejs v0.12 roadmap update
11 years ago
Sam Roberts
abe02553f2
doc: clarify Windows signal sending emulation
11 years ago
Sam Roberts
198ed0bd0d
doc: describe child_process.fork() silent option
11 years ago
Sam Roberts
549be1caa8
doc: child_process.execFile arguments are optional
11 years ago
isaacs
e7f7e2aeca
blog: TJ is the new node core project lead
11 years ago
Sam Roberts
7bd6e33318
doc: streams must be open to be passed to child
spawn stdio options can be a 'stream', but the following code
fails with "Incorrect value for stdio stream: [object Object]",
despite being a stream. The problem is the test isn't really
for a stream, its for an object with a numeric `.fd` property,
and streams do not have an fd until their async 'open' event
has occurred. This is reasonable, but was not documented.
child_process.spawn('date', [], {stdio: [
'ignore',
fs.createWriteStream('out.txt',{flags:'a'}),
'ignore']})
11 years ago
gluxon
56913d2cde
doc: Fix argument typo in SimpleProtocol example
11 years ago
Lorenz Leutgeb
fc7e217a30
doc: fix typo in cluster page
11 years ago
Timothy J Fontaine
aa56d9d354
blog: Post for v0.11.10
11 years ago
Maciej Małecki
5a8de857f0
doc: document that `process.send` is synchronous
Ref #2598
11 years ago
Timothy J Fontaine
ffb718b5a3
doc: clarify process on exit safe usage
11 years ago
Ron Korving
3917232030
docs: process.on('exit') receives exit code
The fact that the "exit" event passes the exit code as an argument
as omitted from the documentation. This adds the explanation and
augments the example code to show that.
11 years ago
Dav Glass
34b9280da4
doc: Fix missing backtick in debugger doc
12 years ago
Timothy J Fontaine
f84c7a2776
blog: Post for v0.10.24
11 years ago