This website requires JavaScript.
Explore
Help
Register
Sign In
daohualiuxiang
/
node
mirror of
https://github.com/nodejs/node.git
Watch
1
Star
0
Fork
You've already forked node
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
d3532a4bf2
node
/
test
/
fixtures
/
b
/
package
/
index.js
3 lines
64 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Module refactor - almost CommonJS compatible now API change summary: * require("/sys.js") becomes require("sys") * require("circle.js") becomes require("./circle") * process.path.join() becomes require("path").join()
2009-11-01 02:02:30 +08:00
exports
.
hello
=
"world"
;
More changes to tests so they really work under context module loader. Plus, getting rid of test/common.js defining things in global.
2010-08-17 23:21:43 +08:00
common
.
debug
(
"load package/index.js"
)
;