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 <ry@tinyclouds.org>2009-03-15 18:02:23 +0300
committerRyan <ry@tinyclouds.org>2009-03-15 18:02:23 +0300
commit2309196c34db62b96facf601f6b01a76a23deea8 (patch)
tree5aa48db028a806ca63e3c1dec261b6709f393968 /TODO
parent878ca395b37fdcdbe23cdce903d6486b947048e1 (diff)
more todo items
Diffstat (limited to 'TODO')
-rw-r--r--TODO16
1 files changed, 15 insertions, 1 deletions
diff --git a/TODO b/TODO
index 15a5bd0bf4d..d3b4a9137c4 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?)