Skip to content

HilkoLantinga/extjs-node

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Untouched libarary with a little adapter to run on NodeJS

  • No DOM required
  • uses the original Ext.require funktion (working dependency system)

Installation: npm install extjs-node

Usage:

require("extjs-node");

Ext.require(['Ext.data.Model','Ext.data.reader.Json','Ext.data.writer.Json',"Ext.data.proxy.Memory"]);

Ext.define("Mock", { extend: "Ext.data.Model", fields: ['name'], proxy: { type: 'memory' } });

var h = Mock.create({name:"Agebrock"}); console.dir(h);

About

ExtJS4 running on NodeJS

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published