LPGhatguy / lemur

Partial implementation of Roblox API in Lua
MIT License
62 stars 25 forks source link

Lemur

Lua Emulation of Roblox APIs
 

Lemur reimplements a large portion of Roblox's API in Lua in order to enable Roblox projects to have continuous integration using services like Travis CI or Jenkins.

Lemur aims to be a fairly complete and up-to-date implementation of Roblox's API, however:

Current feature coverage is detailed in FEATURES.md

Installation

Lemur requires:

Lemur needs certain extra dependencies for some optional features:

Clone the Git repository wherever, then call require on it.

Usage

To use Lemur, create a Habitat and load pieces of the filesystem into the tree:

local lemur = require("lemur")

-- Create a Habitat
local habitat = lemur.Habitat.new()
local ReplicatedStorage = habitat.game:GetService("ReplicatedStorage")

-- Load `src/roblox` as a Folder containing some ModuleScripts:
local root = habitat:loadFromFs("src/roblox")
root.Parent = ReplicatedStorage

-- Locate src/roblox/CoolModule.lua from inside the habitat and load it!
local CoolModule = habitat:require(root.CoolModule)

-- Invoke a method on our Roblox module!
CoolModule.doSomething()

Contributing

If there are any APIs you'd like that are missing, feel free to open an issue on GitHub!

License

Lemur is available under the MIT license. See LICENSE.md for details.