wquery
wquery is a client-only component-oriented web framework written on haxe for pure-js, typescript or haxe environments.
Using in javascript/typescript
# install npm module
npm install hxnodejs-wquery
# your main typescript file
import { Application } from 'hxnodejs-wquery';
Application.run("#myDivToReplace", MyComponentClass);
Using in haxe from sources (no need bundlers like webpack)
# install haxe library
haxelib install wquery
# build.hxml
--library wquery
Using in haxe from precompiled npm module (assumed bundler using)
# install npm module
npm install hxnodejs-wquery
# install haxe externals
haxelib install hxnodejs-wquery
# build.hxml
--library hxnodejs-wquery