{"id":24521149,"url":"https://github.com/matthijskamstra/haxesys","last_synced_at":"2025-04-14T11:13:33.195Z","repository":{"id":37097666,"uuid":"189091371","full_name":"MatthijsKamstra/haxesys","owner":"MatthijsKamstra","description":"Documentation about using the system targets from Haxe","archived":false,"fork":false,"pushed_at":"2024-02-19T21:07:19.000Z","size":15203,"stargazers_count":9,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-14T11:13:27.669Z","etag":null,"topics":["cpp","cs","csharp","documentation","example","haxe","java","jvm","lua","node","nodejs","python","tutorial","tutorials"],"latest_commit_sha":null,"homepage":"https://matthijskamstra.github.io/haxesys","language":"Haxe","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MatthijsKamstra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2019-05-28T19:35:23.000Z","updated_at":"2023-06-26T06:58:54.000Z","dependencies_parsed_at":"2023-01-19T11:03:52.460Z","dependency_job_id":"bffa0d3e-9394-4875-8016-a97542797bbe","html_url":"https://github.com/MatthijsKamstra/haxesys","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fhaxesys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fhaxesys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fhaxesys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatthijsKamstra%2Fhaxesys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatthijsKamstra","download_url":"https://codeload.github.com/MatthijsKamstra/haxesys/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248868766,"owners_count":21174758,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","cs","csharp","documentation","example","haxe","java","jvm","lua","node","nodejs","python","tutorial","tutorials"],"created_at":"2025-01-22T02:49:07.488Z","updated_at":"2025-04-14T11:13:33.160Z","avatar_url":"https://github.com/MatthijsKamstra.png","language":"Haxe","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Haxe and System targets\n\nDocumentation about using the system targets from Haxe.\n\nThe current targets that I have tested is\n\n- cpp (C++)\n- cs (C#)\n- interp (Eval/Macro)\n- java\n- lua\n- jvm\n- neko\n- node.js (without installing npm packages)\n- python\n\nBut Haxe has more system targets, that probably work exactly the same:\n\n- hl (hashlink)\n- php\n\n## Haxe libs\n\nRead [download](docs/haxesys/download.md)\n\nRead https://haxe.org/documentation/introduction/ - Setup your development environment\n\nHere quick and dirty version\n\n```bash\nhaxelib install hxcpp\nhaxelib install hxcs\nhaxelib install hxjava\n```\n\n#### Haxe C#\n\n```\nCompilation error\nC# compiler not found. Please make sure either Visual Studio or mono is installed or they are reachable by their path\n```\n\nosx\n\n```bash\nbrew install mono\n```\n\n#### Haxe Java\n\nhttps://haxe.org/documentation/platforms/java.html\n\n```bash\nCompilation error\nJava compiler not found. Please make sure JDK is installed. If it is, please add an environment variable called JAVA_HOME that points to the JDK install location or add the bin subfolder to your PATH environment.\n```\n\nOSX\n\n\u003e Install the latest Java Runtime Environment (JRE).\n\n```bash\njava -showversion\n# The operation couldn’t be completed. Unable to locate a Java Runtime.\n# Please visit http://www.java.com for information on installing Java.\nbrew install java\n# follow instructions to \"For the system Java wrappers to find this JDK, symlink it with\"\n#  ...\n# check version\njava -showversion\n```\n\n#### LUA\n\n```bash\nbrew install lua\nbrew install luarocks\nbrew install cmake\n```\n\nAnd use `luarocks` to install dependency :\n\n```bash\nluarocks install lrexlib-pcre\nluarocks install environ\nluarocks install luasocket\nluarocks install luv\nluarocks install luautf8\nluarocks install bit32 # depends on the version you install\nluarocks install hx-lua-simdjson # when you want to work with json\n```\n\n#### Visit [http://matthijskamstra.github.io/haxesys/](http://matthijskamstra.github.io/haxesys/)\n\n## How to contribute?\n\nRead more about that [here](contribute.md).\nBut it boils down to: **JUST DO IT!**\n\n#### Visit [https://github.com/MatthijsKamstra/haxesys](https://github.com/MatthijsKamstra/haxesys) to modify the \"source\" aka markdown files.\n\nFound any \"bug\" or have a great idea? Please create a [new issue](https://github.com/MatthijsKamstra/haxesys/issues/new).\n\n## How to build?\n\nUse [Docsify](https://docsify.js.org/#/quickstart).\nYou need to install Node.js and then you automatically have NPM:\n\nInstall docsify\n\n```bash\nnpm i docsify-cli -g\n```\n\nUse to serve docs\n\n```bash\ndocsify serve docs\n```\n\n## Convert from Gitbook to Docsify\n\n[Readmore](Docsify.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthijskamstra%2Fhaxesys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatthijskamstra%2Fhaxesys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatthijskamstra%2Fhaxesys/lists"}