0.0.12 • Published 7 years ago

sencha-hotswap v0.0.12

Weekly downloads
1
License
BSD
Repository
bitbucket
Last release
7 years ago

Installation

Global

npm install -g --production sencha-hotwatch

Local

npm install --save-dev --production sencha-hotwatch

Usage

Via extending your package.json :

"hotswap": {
    "watch": [
      "./classic/src",
      "./build/development"
    ]
  },
 "scripts": {
    "watch":"sencha-hotswap"
 }

Now run:

npm run watch

Via CLI:

Run

sencha-hotswap --watch='../miimetiq/architect/modules/dashboard/frontend/classic/src,../miimetiq/architect/modules/dashboard/frontend/build/development'

Extend your index.html for

	<!-- Sockjs -->
	<script id="sockjs" type="text/javascript" src="./node_modules/sencha-hotswap-client/client/sockjs-0.3.min.js"></script>
	<!-- Hotswap -->
	<script id="hotswap" type="text/javascript" src="./node_modules/sencha-hotswap-client/client/hotswap-client.js"></script>

Register your class for hotswap:

	Ext.define('Dashboard.view.MiimetiqDashboardComponentViewController', {
	extend: 'Ext.app.ViewController',
	alias: 'controller.miimetiq-dashboard-component',
	constructor: function () {
		RegisterHotswap(this);
	},
	....

Proceed as usual:

  • Fire sencha `sencha app watch'
  • Run npm run watch or if globally installed : `sencha-hotswap' inside your frontend folder (needs proper package.json or --watch argument )
  • update/insert methods of your class
  • save your file, some moment later sencha-hotwatch will notify and update your client application in the browser