{version}
Development version, including everything but the kitchen sink.
Check it out and build it yourself (you'll need python-ox
):
$ bzr branch http://code.0x2620.org/oxjs $ tools/build/build.py
Or download OxJS.latest.source.tar.gz
{size.source}.
Start with OxJS/index.html
. It's this website.
Minified production version.
Download OxJS.latest.build.tar.gz
{size.build}.
Or get Ox.js
only: Ox.js
{size.minified}.
<!DOCTYPE HTML> <html> <head> <script type="text/javascript" src="OxJS/build/Ox.js"></script> <script> Ox.load(function() { // Your code here. }); </script> </head> <body></body> </html>
For the development version, use OxJS/dev/Ox.js
instead. And to include Ox.UI
, start with Ox.load('UI', function() { ... })
.
Dual-licensed, GPL/MIT. You can pick either. In a nutshell, the former says no derived work may be more restrictive, while the latter avoids to make that restriction.