在node.js上使用Ext.js?

时间:2011-06-27 06:44:09

标签: node.js extjs

我目前在浏览器和node.js端使用YUI。

有没有办法在node.js上使用Ext.js?

3 个答案:

答案 0 :(得分:2)

http://www.alsonkemp.com/geekery/extjs-4-models-node-js/

这是一个示例实现,引入一些数据建模类。我没有使用过这些库中的任何一个,但是粗略地看了一下它,似乎主要的想法是:

fs = require('fs'); // filesystem module in Node.js

function injectJS(f) {
  eval(fs.readFileSync(f, encoding="ascii"));
}

injectJS('/path/to/my/includes/includeFile.js');

// now use the library as normal

答案 1 :(得分:2)

实际上,有一种方法。

在GitHub上查看N-ext:https://github.com/xcambar/n-ext

使用Node模块,您将能够使用所有Ext.core,Ext.util,Ext.data包。

它还为MongoDB提供代理,以便您可以在应用程序中CRUD您将使用的模型。

HTH,

答案 2 :(得分:0)

更轻松,更清洁的方式:https://github.com/egorFiNE/node-extjs