Giter VIP home page Giter VIP logo

khahotreload's Introduction

KhaHotReload

gif demo

Code patching without project rebuilding. Supported targets:

  • html5
  • debug-html5 (Electron)
  • krom? (not tested)

You can download this sample and test with VSCode (select and run HTML5-watch), or use CLI:

node Kha/make html5 --server &
node Kha/make html5 --watch

Setup for personal project

  • Copy Libraries/hotml folder to your project folder.
  • Add #if hotml new hotml.client.Client(); #end at start of Main.main().
  • Add this block to khafile.js (before resolve(project);):
if (process.argv.includes("--watch")) { // run only in watch mode
	project.targetOptions.html5.unsafeEval = true; // allow eval in electron
	let libPath = project.addLibrary('hotml'); // client code for code-patching
	project.addDefine('js_classic'); // to support constructors patching, optional
	// start websocket server that will send type diffs to client
	const path = require('path');
	if (!libPath) libPath = path.resolve('./Libraries/hotml');
	const Server = require(`${libPath}/bin/server.js`).hotml.server.Main;
	// path to target build folder and main js file.
	const server = new Server(`${path.resolve('.')}/build/${platform}`, 'kha.js');
	callbacks.postHaxeRecompilation = () => {
		server.reload(); // parse js file every compilation
	}
	// for assets reloading
	callbacks.postAssetReexporting = (path) => {
		server.reloadAsset(path);
	}
}

Done. For VSCode you also need to copy .vscode/ launch option and tasks.

Debug hot-reload server

Libraries/hotml is separated VSCode project with personal build task for server side. Parser.hx has some static vars for detected types tracing.

Usage for other frameworks / pure Haxe projects

This khamake plugin does not depend on Kha ecosystem, except for khamake's file watcher and postHaxeRecompilation callback, so you can use it as NodeJS app with any other build system. The only requirements is watch mode for js target and such callback.

Thanks

To Robert Konrad with initial idea and implementation in Krom and KodeGarden.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.