summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-03-15 16:02:23 +0100
committerRyan <ry@tinyclouds.org>2009-03-15 16:02:23 +0100
commit2309196c34db62b96facf601f6b01a76a23deea8 (patch)
tree5aa48db028a806ca63e3c1dec261b6709f393968
parent878ca395b37fdcdbe23cdce903d6486b947048e1 (diff)
downloadnode-2309196c34db62b96facf601f6b01a76a23deea8.tar.gz
more todo items
-rw-r--r--TODO16
1 files changed, 15 insertions, 1 deletions
diff --git a/TODO b/TODO
index 15a5bd0bf..d3b4a9137 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,10 @@
+- ByteArray/Blob
+ - slice
+ - unpack
+ - toJSON = toString = unpack("U*")
+
+- change build system to scons.
+
- ARGV
- jslint integration. compile it into the node binary and run it
@@ -5,15 +12,22 @@
- signal handlers.
+ Signals.onHUP = function () {
+ ...
+ };
+
- stdin, stdout, stderr. Accessing these with read()/write() blocks.
They cannot be select()ed. They are always readable. Thus all access
to them needs to be done in a thread pool. (E.G. oi_file_open_stdin())
-- ByteArray !!!!
+- some sort of module loading mechanism. Would be nice if it was structured
+ like rubygems.
STANDARD LIBRARY MODULES
+- DNS look up (thru http://25thandclement.com/~william/projects/dns.c.html)
+
- File (thru oi_file?)
- AMQP (thru 0mq?)