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-04-16 15:20:02 +0400
committerRyan <ry@tinyclouds.org>2009-04-16 15:20:02 +0400
commit844f923825cc8d548127fbc4fb77d93c5584749d (patch)
tree5cf7b7c50d89acb0b28c21aa5e92229dfa93023e /TODO
parent7e1350f6e44a9f7b37b8fc1244dfe13c85488052 (diff)
remove some old files
Diffstat (limited to 'TODO')
-rw-r--r--TODO43
1 files changed, 0 insertions, 43 deletions
diff --git a/TODO b/TODO
deleted file mode 100644
index d3b4a9137c4..00000000000
--- a/TODO
+++ /dev/null
@@ -1,43 +0,0 @@
-- 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
- automatically on each execution.
-
-- 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())
-
-- 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?)
-
-- Postgres (thru libpq-async http://www.postgresql.org/docs/8.3/interactive/libpq-async.html)
-
-- Memcached (can be implemented in pure js?)
-
-- Redis (can be implemented in pure js?)
-
-- TCPServer
-
-- HTTPClient