node/doc/api/_toc.markdown

37 lines
911 B
Markdown
Raw Normal View History

2012-02-28 03:06:14 +08:00
* [About these Docs](documentation.html)
2010-10-28 20:18:16 +08:00
* [Synopsis](synopsis.html)
* [Globals](globals.html)
2011-04-19 07:52:53 +08:00
* [STDIO](stdio.html)
* [Timers](timers.html)
* [Modules](modules.html)
* [C/C++ Addons](addons.html)
* [Process](process.html)
* [Utilities](util.html)
* [Events](events.html)
Domain feature This is a squashed commit of the main work done on the domains-wip branch. The original commit messages are preserved for posterity: * Implicitly add EventEmitters to active domain * Implicitly add timers to active domain * domain: add members, remove ctor cb * Don't hijack bound callbacks for Domain error events * Add dispose method * Add domain.remove(ee) method * A test of multiple domains in process at once * Put the active domain on the process object * Only intercept error arg if explicitly requested * Typo * Don't auto-add new domains to the current domain While an automatic parent/child relationship is sort of neat, and leads to some nice error-bubbling characteristics, it also results in keeping a reference to every EE and timer created, unless domains are explicitly disposed of. * Explicitly adding one domain to another is still fine, of course. * Don't allow circular domain->domain memberships * Disposing of a domain removes it from its parent * Domain disposal turns functions into no-ops * More documentation of domains * More thorough dispose() semantics * An example using domains in an HTTP server * Don't handle errors on a disposed domain * Need to push, even if the same domain is entered multiple times * Array.push is too slow for the EE Ctor * lint domain * domain: docs * Also call abort and destroySoon to clean up event emitters * domain: Wrap destroy methods in a try/catch * Attach tick callbacks to active domain * domain: Only implicitly bind timers, not explicitly * domain: Don't fire timers when disposed. * domain: Simplify naming so that MakeCallback works on Timers * Add setInterval and nextTick to domain test * domain: Make stack private
2012-04-07 07:26:18 +08:00
* [Domain](domain.html)
2012-02-28 03:12:35 +08:00
* [Buffer](buffer.html)
2012-02-28 03:18:10 +08:00
* [Stream](stream.html)
* [Crypto](crypto.html)
* [TLS/SSL](tls.html)
* [String Decoder](string_decoder.html)
* [File System](fs.html)
* [Path](path.html)
* [Net](net.html)
* [UDP/Datagram](dgram.html)
* [DNS](dns.html)
2010-10-28 20:18:16 +08:00
* [HTTP](http.html)
2011-01-22 10:16:56 +08:00
* [HTTPS](https.html)
* [URL](url.html)
2010-10-28 20:18:16 +08:00
* [Query Strings](querystring.html)
2012-05-26 12:56:41 +08:00
* [Punycode](punycode.html)
2010-10-28 20:18:16 +08:00
* [Readline](readline.html)
* [REPL](repl.html)
* [VM](vm.html)
2012-02-28 03:04:08 +08:00
* [Child Processes](child_process.html)
* [Assertion Testing](assert.html)
* [TTY](tty.html)
2011-10-01 08:01:07 +08:00
* [ZLIB](zlib.html)
* [OS](os.html)
* [Debugger](debugger.html)
2011-10-13 05:19:32 +08:00
* [Cluster](cluster.html)