JSPM

janusjs-extjs-node

0.0.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 37
  • Score
    100M100P100Q58946F

ExtJS framework

Package Exports

  • janusjs-extjs-node

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (janusjs-extjs-node) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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);