The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / lib @ ce82d6b8

Name Size
_debugger.js 39.5 KB
_linklist.js 2.1 KB
_stream_duplex.js 2.41 KB
_stream_passthrough.js 1.6 KB
_stream_readable.js 25.2 KB
_stream_transform.js 7.14 KB
_stream_writable.js 10.5 KB
assert.js 10.6 KB
buffer.js 25.2 KB
child_process.js 27 KB
cluster.js 16.4 KB
console.js 3.16 KB
constants.js 1.15 KB
crypto.js 16.2 KB
dgram.js 11.5 KB
dns.js 6.34 KB
domain.js 6.47 KB
events.js 8.38 KB
freelist.js 1.71 KB
fs.js 44.5 KB
http.js 60.4 KB
https.js 3.57 KB
module.js 14.5 KB
net.js 33.4 KB
os.js 2.12 KB
path.js 13.9 KB
punycode.js 13.8 KB
querystring.js 5.56 KB
readline.js 29.7 KB
repl.js 27.9 KB
stream.js 3.49 KB
string_decoder.js 7.25 KB
sys.js 1.23 KB
timers.js 11.5 KB
tls.js 39.9 KB
tty.js 3.71 KB
url.js 21.8 KB
util.js 14.9 KB
vm.js 2.07 KB
zlib.js 12.5 KB

Latest revisions

# Date Author Comment
7fd5a4d0 06/08/2014 01:01 PM Brian White

fs: remove duplicate check

Signed-off-by: Fedor Indutny <>

80eff968 06/06/2014 06:07 PM Felix Geisendörfer

string_decoder: Add more comments

9fbd0f0f 06/06/2014 06:07 PM Felix Geisendörfer

string_decoder: Fix failures from new test cases

This patch simplifies the implementation of StringDecoder, fixes the
failures from the new test cases, and also no longer relies on v8's
WriteUtf8 function to encode individual surrogates.

2efe4ab7 06/06/2014 12:12 AM Fedor Indutny

stream: start old-mode read in a next tick

Calling `.read()` in the same tick with `.on('data', ...)` may cause
users missing `error` events, because no `error` listeners were set yet.

fix #7618

72cc66e5 05/28/2014 09:58 PM cjihrig

fs: close file if fstat() fails in readFile()

Currently, if fstat() fails in readFile(), the callback
is invoked without closing the file. This commit closes
the file before calling back.

Closes #7697

c862c034 05/23/2014 03:41 PM Alexis Campailla

tls: fix performance issue

See https://github.com/orangemocha/node-connection-drop

I have pinpointed the performance degradation to
https://github.com/joyent/node/commit/ac2263b77f3f346458d06fc019de27e24c63cee0

This change brings performance back to the orginal levels....

7bd08c50 05/15/2014 05:31 PM Greg Sabia Tucker

child_process: do not set args before throwing

No point in setting args and options if TypeError
is being thrown.

fix #7456

Signed-off-by: Fedor Indutny <>

92875501 05/13/2014 04:25 AM Greg Sabia Tucker

child_process: spawn() does not throw TypeError

Ensure TypeError is thrown, fix a bug where `env` option was
assuming the option was actually an object.

This case is especially bad because it then sets `env == null`
instead of using `process.env`.

Fix #7456...

17fbdc18 05/07/2014 03:11 PM Ben Noordhuis

lib: name EventEmitter prototype methods

Before this commit the EventEmitter methods were anonymous functions.
V8 tries to infer names for anonymous functions based on the execution
context but it frequently gets it wrong and when that happens, the
stack trace is usually confusing and unhelpful. This commit names all...

250782d1 04/25/2014 04:52 PM Rod Vagg

util: format as Error if instanceof Error

Conflicts:
lib/util.js
test/simple/test-util-format.js

This is a backport to fix #7253

Signed-off-by: Fedor Indutny <>

View revisions

Also available in: Atom