JavaScript
Overview of Haxe javascript snippets and tutorials.
Feb 27, 2017 JavaScript / Adding a HTML element to the DOM
This is an example to add a paragraph element to the HTML page when the DOM is ready. This tutorial contains two methodes; with and without jQuery.
Feb 28, 2017 JavaScript / Create a server with Haxe/NodeJS
The following tutorial creates a http server using Haxe/Node.js at port 8000 and demonstrates how to build and run it.
Nov 21, 2017 JavaScript / JavaScript inline web workers in Haxe
JavaScript workers make it possible to perform costly calculations (media decoding etc, crypt calculations etc.) in a background thread, without blocking the main UI. There are lots of articles about workers on the net:
May 24, 2016 JavaScript / Using Haxe classes in JavaScript
Normally, when compiling Haxe to JavaScript, the resulting code is kept away from the global scope. This means that you can't reach the Haxe generated code from other scripts. To make that possible, there's the @:expose metadata that can be used on a class. This makes the class exposed to the global scope, and therefore possible to use in plain JavaScript.