CrossByte is a cross-platform Haxe framework for networked, event-driven, and systems-oriented applications.
It is built for projects that want a strong runtime foundation without dragging in a giant engine shape: sockets, HTTP, RPC, timers, workers, files, crypto, compression, IPC, and a set of practical data structures all live in one coherent core.
CrossByte aims to stay modular. The core provides portable behavior first, while optional sibling haxelibs can add native-backed integrations when they are worth the extra dependency.
Release candidate target:
haxelib install crossbyteIf you are tracking the repo directly during RC validation:
haxelib git crossbyte https://github.com/dimensionscape-llc/crossbyte.git- evented applications and services
- TCP, WebSocket, and reliable datagram networking
- HTTP clients and lightweight HTTP server flows
- request/response RPC over live connections
- file, byte, and stream-heavy workflows
- headless runtimes, tools, and backend infrastructure
- cross-target foundations that still leave room for native extensions
CrossByte currently includes:
- async runtime and timer scheduling
- event system and typed event classes
- HTTP and middleware
- URL loading and request utilities
- TCP, WebSocket, and RUDP transport layers
- RPC sessions, commands, handlers, and typed responses
- IPC primitives such as
LocalConnection,SharedChannel, andSharedObject - file APIs,
ByteArray,ByteArrayInput, andByteArrayOutput - compression:
- DEFLATE
- GZIP
- LZ4
- Brotli
- crypto:
- BLAKE3
- Ed25519
- secure random bytes
- password hashing helpers
- workers, task pools, and native process helpers
- data structures and utility packages
- database surfaces for:
- SQLite
- MySQL
- PostgreSQL
- MongoDB
CrossByte's extension story is intentional: features that benefit from native backends or external platform libraries can live in sibling haxelibs instead of bloating the core.
Current extension repos:
crossbyte-libuv- native libuv-backed poll backend
crossbyte-brotli- native Brotli oracle / backend
crossbyte-lz4- native LZ4 oracle / backend
The core remains usable without these extensions. When installed, they can be enabled selectively for native-backed behavior where it matters.
The repository includes small runnable samples for:
- primordial applications
- TCP chat
- RPC
- LocalConnection, SharedChannel, and SharedObject IPC
- UDP and reliable datagrams
- HTTP serving
- worker/background tasks
See samples/README.md for the current sample index and build commands.
CrossByte uses utest for its test suite.
The repository root is now described by Aedifex.hx. That file is the source of truth for the library identity, task list, and generated haxelib.json metadata.
To refresh haxelib.json from Aedifex.hx, run:
haxelib run aedifex haxelib sync .Run the fast interpreted suite with:
haxe test.hxmlThe same test flow is available through Aedifex:
haxelib run aedifex task interp-tests .Run the native smoke build with:
haxe ci/native-tests.hxmlOr through Aedifex:
haxelib run aedifex task native-tests .Then run the produced executable:
./export/ci-native-tests/NativeSmokeMainTo inspect the registered CrossByte tasks, run:
haxelib run aedifex tasks --json .The repository CI covers:
- fast interpreter tests
- generated API documentation
- hxcpp API audit builds
- native smoke tests
- native sample builds
- sibling extension jobs for the optional native modules
The CI is currently configured to use the dimensionscape/hxcpp socket-fixes branch so CrossByte can validate against the poll/index fixes it depends on.
Each CI run now also publishes a crossbyte-api-docs artifact containing the generated dox site for that revision.
CrossByte is trying to be a serious runtime layer, not a grab-bag of unrelated helpers.
That means:
- portable core behavior first
- native acceleration as opt-in extensions
- efficient hot paths for network and byte-oriented code
- typed APIs where they add real leverage
- enough low-level access to stay useful in unusual projects
If you are building something network-heavy, service-oriented, or systems-adjacent in Haxe, CrossByte is meant to give you a lot of the unglamorous but important foundation work in one place.
