You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1012 B

15 years ago
- fix tests for NODE_MODULE_CONTEXTS=1
15 years ago
- readline
- fix for two column glyphs. use Markus Kuhn's wcwidth.c
- fix for commands that extend beyond term width
- SSL should be factored out of net.js into standalone stream object
- add completion callbacks to all stream write() methods
14 years ago
- Erradicate all traces of 'binary' encoding. Only used, now, in OpenSSL
binding.
14 years ago
- EventSource branch merged
14 years ago
- Use C++ style casts everywhere.
14 years ago
- Ruby-like Process#detach (is that possible?)
- stderr isn't flushing on exit
14 years ago
- ReadStream should not use an offset in calls to fs.read
(so that it can pull in files larger than 2G)
14 years ago
- process object should be defined in src/node.js not in c++
- Test for EMFILE accept spin bug.
14 years ago
- 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.