Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-09-17 09:22:38 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-09-17 09:22:38 +0400
commit3def66ac3b3c2644bc4f0261662236638b55ba51 (patch)
treec37b8129361a7f52f6891857be9b0f8237f71354 /TODO
parent431e43009c1a90781bea57aa993797d0161bbf95 (diff)
Add items to TODO
Diffstat (limited to 'TODO')
-rw-r--r--TODO6
1 files changed, 6 insertions, 0 deletions
diff --git a/TODO b/TODO
index 6a48bb7f3c7..14f0fab40f3 100644
--- a/TODO
+++ b/TODO
@@ -20,3 +20,9 @@
Test on Linux's /proc/sys/kernel/hostname
- Ruby-like Process#detach (is that possible?)
- stderr isn't flushing on exit
+- Pull constants output process.
+- ReadStream should not use an offset in calls to fs.read
+ (so that it can pull in files larger than 2G)
+- fs.readFile and fs.readFileSync need to not stat and prealloc a buffer
+ based on size but rather read until EOF into a chain of buffers, then
+ concat them together.