haxe-dev

0.0.8 • Public • Published

npm-haxe

Build Status

Installs Haxe using Node Package Manager aka npm

Key-features

  • Global or per-project, sandboxed, standard Haxe installation
  • No dependency to Neko/libneko
  • Includes Haxelib
  • Tested on Ubuntu/Linux and Windows

Usage

CLI installation

npm install haxe-dev

By default, this will make haxe and haxelib available to npm scripts only, with haxelib repository sandboxed to your current working directory.

To have haxe and haxelib commands available globally, use the -g flag. This will also make the haxelib repo global.

Package.json sample

{
  "scripts":{
    "postinstall": "haxelib --always install build.hxml",
    "build": "haxe build.hxml"
  },
  "dependencies": {
    "haxe": "clemos/npm-haxe"
  }
}

Please notice the --always flag in the haxelib command, to avoid having to confirm haxelibs installation.

Running Haxe from NodeJS

This package also comes with the minimal bindings to run the Haxe compiler from NodeJS.

var haxe = require('haxe-dev').haxe;
var haxelib = require('haxe-dev').haxelib;
 
// all commands return a ChildProcess instance
 
haxe( "-version" );
haxelib( "install", "hxnodejs" );
 
var server = haxe("--wait", "6000");

See also test.js

Configuration options [Experimental]

These are not very well tested, as I'm not even sure how they are supposed to work...

{
    "version": "3.2.1",
    "nightly": "",
    "haxelib_version": "3.2.0-rc.1"
}

Version

See Haxe Download list. Please notice the directory name in the archive must match.

Nightlies

nightly value can be, for example "2016-02-25_development_7c4fd45", for current latest nightly build.

In this case, the version value is still used, and must match the one of the directory extracted from the archive.

Haxelib

haxelib_version must match a release from the official Haxelib repo

Known issues

The package relies on the node command, which has issues on some Ubuntu versions.

If you get an error similar to this :

sh: 1: node: not found
npm WARN This failure might be due to the use of legacy binary "node"
npm WARN For further explanations, please read /usr/share/doc/nodejs/README.Debian

Just install the nodejs-legacy package:

sudo apt-get install nodejs-legacy

Readme

Keywords

none

Package Sidebar

Install

npm i haxe-dev

Weekly Downloads

2

Version

0.0.8

License

(MIT OR GPL-3.0)

Last publish

Collaborators

  • clemos
  • damoebius