如何在节点上使用YUI3?

我不能让YUI3在节点上工作。

我已经安装了所有依赖这个网站: http : //github.com/yui/nodejs-yui3 。

这是我的代码:

var jsdom = require("jsdom").jsdom, window = jsdom("<html><head></head><body>hello world</body></html>").createWindow(); var puts = require("sys").puts; var YUI = require("yui3").YUI; var person = { name: "Ajsie", age: 25, greet: function() { puts("Hello World! My name is " + this.name + " and I am " + this.age + " years old") } } result = YUI.Object(person); puts(result); 

这是terminal上的输出:

 node.js:50 throw e; ^ TypeError: Object function () { var i = 0, Y = this, args = arguments, l = args.length, gconf = (typeof YUI_config !== 'undefined') && YUI_config; if (!(Y instanceof YUI)) { Y = new YUI(); } else { // set up the core environment Y._init(); if (gconf) { Y.applyConfig(gconf); } // bind the specified additional modules for this instance if (!l) { Y._setup(); } } if (l) { for (; i < l; i++) { Y.applyConfig(args[i]); } Y._setup(); } return Y; } has no method 'Object' at Object.<anonymous> (/Volumes/Private/ajsie/Projects/icdev/javascript/node/object.js:15:14) at Module._compile (node.js:324:23) at Object..js (node.js:332:12) at Module.load (node.js:254:25) at Object.runMain (node.js:346:24) at Array.<anonymous> (node.js:595:12) at EventEmitter._tickCallback (node.js:42:22) at node.js:607:9 

它说“没有方法”对象“。

问题是什么?

代码应该如下所示:

 var jsdom = require("jsdom").jsdom, window = jsdom("hello world").createWindow(); var puts = require("sys").puts; var YUI = require("yui3").YUI; YUI().use(function(Y){ var person = { name: "Ajsie", age: 25, greet: function() { puts("Hello World! My name is " + this.name + " and I am " + this.age + " years old"); } } var result = Y.Object(person); puts(result); });