我看到require("sys")
使用了很多,我发现有a CommonJS spec for a system module但some code that I see使用了require("sys").error(e);
这样的模块,但似乎没有列出错误CommonJS规范,所以我想知道在哪里可以找到NodeJS使用的系统模块的文档,因为I'm not seeing it in the NodeJS documentation。
答案 0 :(得分:17)
看起来该模块已重命名为util
,因此文档位于http://nodejs.org/docs/v0.4.2/api/all.html#util
更新: (从同一用户的后续回复中合并)
来源位于:https://github.com/joyent/node/blob/master/lib/sys.js
但我希望有实际的文件......