Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Module refactor - almost CommonJS compatible now | Ryan Dahl | 2009-10-31 | 1 | -2/+2 |
| | | | | | | | | | | API change summary: * require("/sys.js") becomes require("sys") * require("circle.js") becomes require("./circle") * process.path.join() becomes require("path").join() | ||||
* | A few more node->process changes | Ryan Dahl | 2009-10-30 | 1 | -1/+1 |
| | |||||
* | Remove include() add node.mixin() | Ryan Dahl | 2009-10-05 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | include() should not be used by libraries because it will pollute the global namespace. To discourage this behavior and bring Node more in-line with the current CommonJS module system, include() is removed. Small scripts like unit tests often times do want to pollute the global namespace for ease. To avoid the boiler plate code of var x = require("/x.js"); var foo = x.foo; var bar = x.bar; The function node.mixin() is stolen from jQuery's jQuery.extend. So that it can be written: node.mixin(require("/x.js")); Reference: http://docs.jquery.com/Utilities/jQuery.extend http://groups.google.com/group/nodejs/browse_thread/thread/f9ac83e5c11e7e87 | ||||
* | Add node-waf to help with building addons. | Ryan Dahl | 2009-10-04 | 1 | -0/+17 |
| | |||||
* | Clean up some things in the repl, add docs. | Ryan Dahl | 2009-09-28 | 1 | -1/+1 |
| | |||||
* | include utils in the repl. | Ryan Dahl | 2009-09-28 | 1 | -0/+1 |
| | |||||
* | Extract the good parts of node-repl into standalone library. | Ryan Dahl | 2009-09-24 | 1 | -38/+5 |
| | | | | | Now you can require("/repl.js") in your server to be able to examine it while it's running. | ||||
* | Move node-repl to bin/node-repl | Ryan Dahl | 2009-09-20 | 1 | -0/+43 |