1.0.6 • Published 6 years ago

@spmeesseman/extjs-pkg-websocket v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

ExtJs Package Open Tooling Package Wrapper for WebSocket

semantic-release app-publisher

Description

This package provides an ExtJS package wrapper for js websocket.

Install

To install this package, run the following command:

npm install @perryjohnson/extjs-pkg-websocket

Usage

To include the package in an ExtJS application build, be sure to add the package name to the list of required packages in the app.json file:

"requires": [
     "websocket",
    ...
]

For an open tooling build, also add the node_modules path to the workspace.json packages path array:

 "packages": {
    "dir": "...${package.dir}/node_modules/@perryjohnson/extjs-pkg-websocket"
}

Simply include the control into any class file:

require: [ 'Ext.ux.websocket' ],
items: [
{
    xtype: 'websocket'
}]