haxelib
Haxelib is a command line tool used in the Haxe programming language ecosystem. It is responsible for managing libraries and dependencies in Haxe projects. Developed as a package manager, haxelib allows users to easily download, install, and publish Haxe libraries. Users can search for libraries hosted on the Haxelib website or contribute their own libraries. Haxelib provides a single command, "haxelib", which can perform various actions like installing libraries, removing libraries, updating libraries, and listing installed libraries. It organizes libraries by version and platform, allowing users to specify specific library versions and target platforms for their projects. Haxelib keeps track of dependencies and ensures that the required libraries are installed for a project to compile and run correctly. It also integrates with the Haxe compiler seamlessly, allowing libraries to be imported and used in Haxe code with ease. Haxelib supports community-contributed libraries, making it a vibrant and continuously growing repository of Haxe resources. Overall, haxelib simplifies library management and enhances development efficiency for Haxe programmers.
List of commands for haxelib:
-
haxelib:tldr:197ef haxelib: Search for a Haxe library.$ haxelib search ${keyword}try on your machineexplain this command
-
haxelib:tldr:20d28 haxelib: Install the development version of a library from a Git repository.$ haxelib git ${libname} ${git_url}try on your machineexplain this command
-
haxelib:tldr:550fb haxelib: Uninstall a Haxe library.$ haxelib remove ${libname}try on your machineexplain this command
-
haxelib:tldr:980f9 haxelib: Print a tree of locally installed Haxe libraries.$ haxelib listtry on your machineexplain this command
-
haxelib:tldr:a55ca haxelib: Install a Haxe library.$ haxelib install ${libname}try on your machineexplain this command
-
haxelib:tldr:d51bd haxelib: Install a specific version of a Haxe library.$ haxelib install ${libname} ${version}try on your machineexplain this command
-
haxelib:tldr:ebde9 haxelib: Upgrade all installed Haxe libraries.$ haxelib upgradetry on your machineexplain this command