Ryan Dahl
dc041628ce
Add not about nextTick and setTimeout(fn, 0)
15 years ago
Jérémy Lal
ffb4b47367
Fix for when EV_MULTIPLICITY=1
15 years ago
Ryan Dahl
46ebaa00ce
Encoding 0 length data, returns '' instead of null
15 years ago
Ryan Dahl
b8dee2eb20
camel case variables in url module
15 years ago
Ryan Dahl
bb0d1e65e1
bump version
15 years ago
Ryan Dahl
6ee0bf704a
Fix dns bug - first cb arg wasn't null
15 years ago
Ryan Dahl
e8363abb6a
delete changelog.html on 'make docclean'
15 years ago
Ryan Dahl
05ae932a0e
Implement fs.readdirSync()
15 years ago
Benjamin Thomas
49cd1bbf84
Fix bug in process.mixin where deep copies would not work at all.
Before, doing this:
var sys = require("sys");
var obj = {
one: 1,
two: 2,
three: {
value: 3
}
};
sys.p(process.mixin(true, {}, obj));
Would output this:
{
"two": 2,
"three": {
"one": 1,
"two": 2,
"three": {
"value": 3
},
"value": 3
},
"one": 1
}
When it should have outputed this:
{
"one": 1,
"two": 2,
"three": {
"value": 3
}
}
15 years ago
Ryan Dahl
4c8889bba2
Revert "Add fs.readdirSync()"
Doesn't work on Linux.
This reverts commit 05d6da6c4a
.
15 years ago
isaacs
9acc8a686a
Expose fs.lstat
15 years ago
Zoran Tomicic
d98ea70168
Configurable debug ports, and --debug-brk
15 years ago
Ryan Dahl
12d78cd1df
Rename sendHeader to writeHeader; allow reasonPhrase
15 years ago
Micheil Smith
05d6da6c4a
Add fs.readdirSync()
15 years ago
Ryan Dahl
c094dda53c
Move errors for readPause and readResume
15 years ago
Ryan Dahl
7a8ede6f80
Add note about Promise removal
15 years ago
Scott González
6eff8937d7
Fixed encoding in fs.writeFile().
15 years ago
Jeremy Ashkenas
2916a2acd4
Remove '--' from command line parsing
15 years ago
Ryan Dahl
a0c48eecab
Rename readPause and readResume to pause/resume
15 years ago
Ryan Dahl
1db824a9c1
Add changelog to website
15 years ago
Tim Caswell
68af59ef6b
Fix typo in fs.writeFile
15 years ago
Ryan Dahl
ea4956f046
Simplify call to V8::IdleNotification
Run a max priority ev_timer every 2 seconds. If there aren't any pending
watchers then call V8::IdleNotification() once. This is slower at freeing
memory, but I think simpler and less aggressive.
15 years ago
Ryan Dahl
0485cc41d5
Remove promises
15 years ago
Ryan Dahl
7a51184420
Multipart test no longer depend on Promise
15 years ago
Ryan Dahl
5fbc750db7
multipart no longer depends on Promise
15 years ago
Ryan Dahl
daacb81d3a
Experimental idle garbage compact
15 years ago
Ryan Dahl
fcda5e8dfa
If ab isn't installed skip keep-alive test
15 years ago
Rasmus Andersson
860fcf23f4
skipping TLS test if node was not compiled with TLS
15 years ago
Ryan Dahl
de7016eac5
sys.exec() no longer uses Promise
15 years ago
Ryan Dahl
c04b679e12
'dns' no longer uses Promise
15 years ago
Ryan Dahl
d0f2d465aa
http.cat no longer uses Promise
15 years ago
Ryan Dahl
ef55324f1a
Do not use Promise in 'fs' module
15 years ago
Ryan Dahl
662fdfed37
fs.closeSync should return Undefined on success
15 years ago
Ryan Dahl
375131376f
Module loading no longer depends on Promise
The module loading code is looking extremely messy. It needs a refactor.
15 years ago
Ryan Dahl
bcf163da27
Upgrade V8 to 2.1.1
15 years ago
Ryan Dahl
764783560e
Remove Promise.prototype.wait()
I don't want users to have to think about coroutine safety.
http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/2468/focus=2603
15 years ago
Ryan Dahl
860d008d54
Truly synchronous require()
This is to reduce our dependency on wait(). For some reason this patch
affects the timer test:
% ./node test/mjsunit/test-timers.js
diff: 989
diff: 989
diff: 1989
diff: 2989
Previously it showed:
% ./node test/mjsunit/test-timers.js
diff: 1000
diff: 1000
diff: 2000
diff: 3000
I'm not sure what caused this change, and it's rather disturbing. However I
want to remove wait() as soon as possible and so am pushing this patch
through.
The module loading code is becoming increasingly ugly - this patch has not
helped. A refactor needs to be done soon.
15 years ago
Ryan Dahl
ca02b4f586
Fix AUTHORS again
I hope I won't spend all my time now maintaining this file...
15 years ago
Ryan Dahl
c5de1b6350
fix email in AUTHORS
15 years ago
Rasmus Andersson
3bb7ad6fea
fixed process.mixin to properly copy getters/setters
15 years ago
Micheil Smith
bcc032e43a
Adding interface between node and libeio for Chmod.
15 years ago
Ryan Dahl
cb32883537
Add authors file
15 years ago
Ryan Dahl
c2e58c9dee
Remove a few wait() calls in the tests
15 years ago
Ryan Dahl
4f01c74e9f
Fix long lines in docs
15 years ago
Ryan Dahl
7811fa6fec
Update example on index.html
15 years ago
Ryan Dahl
07423f3a87
Merge branch 'master' into net2
15 years ago
Ryan Dahl
7c1c89fc29
Update benchmark script to new API
15 years ago
Ryan Dahl
916d592be1
Fix 'make website-upload'
15 years ago
Ryan Dahl
87d5e5b316
bump version
15 years ago
Ryan Dahl
217b60a272
sed -i 's/git-/git /g' Makefile
15 years ago