0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-28 06:28:40 +01:00
nodejs/TODO

34 lines
1.2 KiB
Plaintext
Raw Normal View History

2010-07-15 19:36:35 +02:00
- fix tests for NODE_MODULE_CONTEXTS=1
2010-07-15 20:32:51 +02:00
- readline
- fix for two column glyphs. use Markus Kuhn's wcwidth.c
- fix for commands that extend beyond term width
2010-07-27 21:19:08 +02:00
- Erradicate all traces of 'binary' encoding. Only used, now, in OpenSSL
binding.
2010-07-21 20:44:47 +02:00
- EventSource branch merged
2010-08-17 17:16:43 +02:00
- Use C++ style casts everywhere.
2010-09-12 05:40:46 +02:00
- Ruby-like Process#detach (is that possible?)
- stderr isn't flushing on exit
2010-09-17 07:22:38 +02:00
- ReadStream should not use an offset in calls to fs.read
(so that it can pull in files larger than 2G)
2010-09-17 08:16:36 +02:00
- process object should be defined in src/node.js not in c++
- Test for EMFILE accept spin bug.
2010-11-16 07:18:52 +01:00
- Deprecate setEncoding() and instead add option to on('data').
Example:
stdin.on('data', { encoding: 'utf8' }, function (chunk) {
process.stdout.write('WRITE: ' + chunk);
});
Perhaps by assigning cb.opts.encoding and calling
EventEmitter.optHandlers.encoding() if it exists.
2010-11-18 02:50:00 +01:00
- DOCS
- anchor links next to each function, for easy linking.
EG <a href="#fs.stat">#</a>
2010-12-01 21:32:37 +01:00
- "node --raw-js script.js" should bipass all Node code and load a raw V8
interpreter
2011-01-05 20:57:53 +01:00
- Use http_parser_execute2() in node_http_parser.cc and make req.pause()
work correctly
https://github.com/ry/http-parser/blob/c95a5479596e95b7cdd88ca9d7b32fd3afb4379c/http_parser.h#L266