{"id":34856776,"url":"https://github.com/untrustedmodders/plugify-module-lua","last_synced_at":"2026-04-28T03:06:17.766Z","repository":{"id":301737295,"uuid":"1010152707","full_name":"untrustedmodders/plugify-module-lua","owner":"untrustedmodders","description":"Lua Language Module","archived":false,"fork":false,"pushed_at":"2026-03-10T19:16:42.000Z","size":145,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-11T00:25:40.957Z","etag":null,"topics":["language-module","lua","plugify","plugify-module"],"latest_commit_sha":null,"homepage":"http://plugify.net/plugify-module-lua/","language":"Lua","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/untrustedmodders.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-28T13:12:09.000Z","updated_at":"2026-03-10T19:16:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"af094c7d-a350-485c-89fc-ad3397d144a0","html_url":"https://github.com/untrustedmodders/plugify-module-lua","commit_stats":null,"previous_names":["untrustedmodders/plugify-module-lua"],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/untrustedmodders/plugify-module-lua","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-lua","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-lua/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-lua/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-lua/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/untrustedmodders","download_url":"https://codeload.github.com/untrustedmodders/plugify-module-lua/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/untrustedmodders%2Fplugify-module-lua/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32364109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["language-module","lua","plugify","plugify-module"],"created_at":"2025-12-25T20:03:38.578Z","updated_at":"2026-04-28T03:06:17.761Z","avatar_url":"https://github.com/untrustedmodders.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Русский](https://img.shields.io/badge/Русский-%F0%9F%87%B7%F0%9F%87%BA-green?style=for-the-badge)](README_ru.md)\n\n# Lua Language Module for Plugify\n\nThe Plugify Lua Language Module is a powerful extension for the Plugify project, enabling developers to write plugins in Lua and seamlessly integrate them into the Plugify ecosystem. Whether you're a Lua enthusiast or wish to leverage the lightweight and fast scripting of Lua for your plugins, this module provides the flexibility and ease of use you need.\n\n## Features\n\n- **Lua-Powered Plugins**: Write your plugins entirely in Lua, taking advantage of Lua’s simplicity and speed.\n- **Seamless Integration**: Integrate Lua plugins effortlessly into the Plugify system, making them compatible with plugins written in other languages.\n- **Cross-Language Communication**: Communicate seamlessly between Lua plugins and plugins written in other languages supported by Plugify.\n- **Easy Configuration**: Utilize simple configuration files to define Lua-specific settings for your plugins.\n\n## Getting Started\n\n### Prerequisites\n\n- Lua `5.4.7` is recommended.\n- Plugify Framework Installed\n\n### Installation\n\n#### Option 1: Install via Plugify Plugin Manager\n\nYou can install the Lua Language Module using the Mamba package manager by running the following command:\n\n```bash\nmamba install -n your_env_name -c https://untrustedmodders.github.io/plugify-module-lua/ plugify-module-lua\n```\n\n#### Option 2: Manual Installation\n\n1. Install dependencies:  \n\n   a. Windows\n   \u003e Setting up [CMake tools with Visual Studio Installer](https://learn.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio#installation)\n\n   b. Linux:\n   ```sh\n   sudo apt-get install -y build-essential cmake ninja-build\n   ```\n   \n   c. Mac:\n   ```sh\n   brew install cmake ninja\n   ```\n\n2. Clone this repository:\n\n    ```bash\n    git clone https://github.com/untrustedmodders/plugify-module-lua.git --recursive\n    ```\n\n3. Build the Lua language module:\n\n    ```bash\n    mkdir build \u0026\u0026 cd build\n    cmake ..\n    cmake --build .\n    ```\n\n### Usage\n\n1. **Integration with Plugify**\n\n   Ensure that your Lua language module is available in the same directory as your Plugify setup.\n\n2. **Write Lua Plugins**\n\n   Develop your plugins in Lua using the Plugify Lua API. Refer to the [Plugify Lua Plugin Guide](https://untrustedmodders.github.io/languages/lua/first-plugin) for detailed instructions.\n\n3. **Build and Install Plugins**\n\n   Put your Lua scripts in a directory accessible to the Plugify core.\n\n4. **Run Plugify**\n\n   Start the Plugify framework, and it will dynamically load your Lua plugins.\n\n## Example\n\n```lua\nlocal Plugin = require('plugify').Plugin\n\nlocal ExamplePlugin = {}\nExamplePlugin.__index = ExamplePlugin\nsetmetatable(ExamplePlugin, {__index = Plugin})\n\nfunction ExamplePlugin.new()\n    local self = setmetatable({}, ExamplePlugin)\n    return self\nend\n\nfunction ExamplePlugin:plugin_start()\n    print(\"Lua: OnPluginStart\")\nend\n\nfunction ExamplePlugin:plugin_update(dt)\n    print(\"Lua: OnPluginUpdate - Delta time:\", dt)\nend\n\nfunction ExamplePlugin:plugin_end()\n    print(\"Lua: OnPluginEnd\")\nend\n\n```\n\n## Documentation\n\nFor comprehensive documentation on writing plugins in Python using the Plugify framework, refer to the [Plugify Documentation](https://untrustedmodders.github.io).\n\n## Contributing\n\nFeel free to contribute by opening issues or submitting pull requests. We welcome your feedback and ideas!\n\n## License\n\nThis Python Language Module for Plugify is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funtrustedmodders%2Fplugify-module-lua","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funtrustedmodders%2Fplugify-module-lua","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funtrustedmodders%2Fplugify-module-lua/lists"}