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
AgeCommit message (Collapse)Author
2011-07-19Finally remove node::EventEmitterRyan Dahl
2011-03-15Update copyright headersRyan Dahl
2010-07-14Move the Stat structure functions to node_file.ccPaul Querna
from node.cc, so we can convert fs to a module.
2009-12-06Refactor node_file.cc to not use Promises.Ryan Dahl
At the same time implement synchronous wrappers of the POSIX functions. These will be undocumented until we settle on an API. Works like this // returns promise as before posix.mkdir("test").addCallback(function () { sys.puts("done"); }); // returns undefined, executed synchronously. posix.mkdirSync("test"); sys.puts("done"); This refactoring is a step towards allowing promises to be implemented purely in javascript.
2009-10-27Prefix all source files with node_Ryan Dahl