I'm using YUI at the moment on both browser and node.js side.
Is there a way to use Ext.js on node.js?
http://www.alsonkemp.com/geekery/extjs-4-models-node-js/
Here's an example implementation, pulling in some data modelling classes. I haven't used either of these libraries, but a cursory glance at this and it seems the main idea is this:
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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With