From 3def66ac3b3c2644bc4f0261662236638b55ba51 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 16 Sep 2010 22:22:38 -0700 Subject: [PATCH] Add items to TODO --- TODO | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TODO b/TODO index 6a48bb7f3c..14f0fab40f 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.