Obfuscate Lua 5.1 scripts.
The following section will detail the different commands of darklua. You can also get a list of the available commands and options using the command line tool itself, simply run:
darklua help
To get help on a specific command, simply append --help
(or -h
) to the command name. For example, to get help on the minify
command:
darklua minify --help
This command reads Lua code and only reformat it in a more compact way. The input path can be a file or directory. Given a directory, darklua will find all Lua files under that directory and output them following the same hierarchy.
```
darklua minify
optional arguments:
-c, --column-span
If you have a src
folder that contains a bunch of Lua scripts (files ending with .lua
), you can generate the minified version of these scripts into a new folder called minified-src
using the following command:
darklua minify src minified-src
To specify the column-span argument, simply run:
``` darklua minify src minified-src --column-span 120
darklua minify src minified-src -c 120 ```
darklua is a command line tool that can be installed using cargo.
cargo install darklua
If you want to use the lastest darklua available, install it using the git url:
cargo install --git https://gitlab.com/jeparlefrancais/darklua.git
darklua is available under the MIT license. See LICENSE.txt for details.