summaryrefslogtreecommitdiff
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Module refactor - almost CommonJS compatible nowRyan Dahl2009-10-311-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 changesRyan Dahl2009-10-301-1/+1
|
* Remove include() add node.mixin()Ryan Dahl2009-10-051-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 Dahl2009-10-041-0/+17
|
* Clean up some things in the repl, add docs.Ryan Dahl2009-09-281-1/+1
|
* include utils in the repl.Ryan Dahl2009-09-281-0/+1
|
* Extract the good parts of node-repl into standalone library.Ryan Dahl2009-09-241-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-replRyan Dahl2009-09-201-0/+43