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
Timothy J Fontaine
7dca8d714f
blog: Post for v0.10.23
11 years ago
Nicolas Kaiser
4bc2ec90d7
doc: fix typos in node.1
11 years ago
Mathias Bynens
f89a7185b7
doc: mention `binary` as deafult for Hash strings
11 years ago
Gabriel Farrell
04d52270b6
doc: "finish" event is on the writable stream
11 years ago
Yazhong Liu
5cfee927cd
doc: mention execArgv in setupMaster
11 years ago
Fedor Indutny
796834bf18
doc: document 'error' event for stream.Writable
fix #5255
11 years ago
isaacs
b371d4ae8f
blog: bnoordhuis departure
11 years ago
Yazhong Liu
bd7fa92de4
doc: list execArgv option for child_process.fork()
11 years ago
Gabriel Falkenberg
94c4ba9dd3
doc: change constant to consistent
11 years ago
Sam Roberts
8aac118b69
process: document kill(0), disallow kill(O_RDWR)
The null signal test existed, but only tested the case where the target
process existed, not when it did not exist.
Also clarified that SIGUSR1 is reserved by Node.js only for receiveing,
its not at all reserved when sending a signal with kill().
kill(pid, 'O_RDWR'), or any other node constant, "worked". I fixed this
by also checking for 'SIG'. The same as done in the isSignal() function.
Now the signal names supported by process.kill() are the same as those
supported by process.on().
11 years ago
Yazhong Liu
fcfaa392ae
doc: net: fix typo in example code
11 years ago
Michael Ridgway
a32b8787a4
doc: http: document ServerResponse 'finish' event
11 years ago
Nikolai Vavilov
207a3e10f8
doc: http: properly document callback argument
11 years ago
isaacs
90655a998e
blog: npm outage postmortem
11 years ago
Linus Unnebäck
953d7184ec
doc: clarify child_process error behaviour
Clarify that an 'error' event may or may not be followed by an 'exit'
event and that it's not safe to make assumptions either way.
11 years ago
Timothy J Fontaine
a34bbaf31b
blog: Post for v0.11.9
11 years ago
Fedor Indutny
88dc1fcb62
crypto: `randomBytes` is non-blocking
Add NOTE section in documentation, mentioning that `randomBytes` won't
block when entropy sources are drained.
fix #6372
11 years ago
Fedor Indutny
5885f464f0
net: fix `new net.Socket` documentation
`Socket` no longer accepts `type` option, and also accepts `readable`,
`writable` options.
fix #6541
11 years ago
Ben Noordhuis
1394d5856b
doc: add nodejs.vn to community page
Node.js. It's not just for SF hipsters anymore.
11 years ago
Ben Noordhuis
a763db8fc0
doc: sort community page links alphabetically
This commit introduces some long lines but it's HTML so it's okay.
11 years ago
Timothy J Fontaine
ac9cf00252
blog: Post for v0.10.22
11 years ago
Fedor Indutny
0be5a94c56
doc: encoding is ignored if input is a Buffer
NOTE: it wasn't in 0.8
fixes #6386
11 years ago
isaacs
849c92fec7
doc: Correct and add several items
Several names/urls were out of date, and some really
awesome stuff was missing.
11 years ago
Sam Roberts
155df9ca76
doc: document node signal handling
Partly lifted from uv.h, partly from observation of node.cc.
11 years ago