The Eden Framework
Github: https://github.com/Stratiz/Eden
Eden is a lightweight & flexible module aggregator framework designed to grow with you. Populate the framework with your own utilities, modules from other frameworks, etc., and Eden will accept it with ease!
Eden has powered millions of visits across Roblox in games ranging from hardcore FPS to simulators and tycoons.
The primary goal of Eden is to eliminate the common hassle when it comes to over-complicated Roblox frameworks. Eden keeps it lean and straightforward by providing a flexible, essentialistic foundation for you and your team to build your project in a rapid iteration environment like Roblox.
Eden is designed to be used with Rojo but can easily be implemented without it.
Table of Contents
Features
- Beginner friendly
Due to Edenâs flexible design, the learning curve is minimal and is perfect for teams onboarding new developers or studios looking for a consistent and predictable framework.
Eden is designed to be as predictable as possible, meaning thereâs no room for unexpected behavior or tedious edge cases.
- Module Aggregation for simple requiring
Eden is a module aggregator framework, which means it takes all of the modules in the provided directories and caches them so they can be accessed with less hassle.
A module require in Eden looks like this: shared("ModuleName")
shared()
is used as an alternate require()
function, so you donât need to require the require module in every module in the game.
You can also require instances directly with shared()
if needed. Example: shared(script.Folder.Module)
- Auto Initialization
Another helpful feature that exists in Eden is the auto initialization of functions in priority order.
By putting an :Init()
method in your module, Eden will automatically call this method in the order you specify by defining an optional Priority
variable in the module table when the game starts. The higher the priority number, the sooner the module will run. You can disable this functionality with the Static
directory feature (see guidelines below) or with the Initialize
parameter.
- Cyclical module detection
While Roblox attempts to detect cyclicals between modules, it fails in some conditions. Especially in the presence of as yeilding function such as :WaitForChild()
, which results in a infinite hang with no warning. Silent cyclical hangs are bothersome, as they cause your game to break silently and take time to find.
Thankfully, Eden will automatically detect and warn you if this occurs.
NOTE: Due to current Luau limitations, a module that surpasses the LOAD_TIMEOUT
time will lose any Luau optimizations during that run session.
- Hang detection
Sometimes code can infinitely yield silently, and itâs essential to know when this issue occurs. Therefore, Eden monitors the execution times of your modules and will warn you if one is taking too long.
- Flexible file structure
Eden doesnât care how you organize your modules. You can put all of your modules directly under your root folders or create infinite subfolders. Eden is built to be flexible; make it your own!
Parameters
All parameters are optional.
-
Priority : number (Default: 0)
An
int
that specifies the order in which the:Init()
method is called on game start. The higher the priority, the sooner it will run. Negativeint
s are also allowed and will run after everything else. -
Initialize : boolean (Default: true)
Specifies whether or not the
:Init()
function is called if present. Suitable for disabling modules.
In the event these parameters collide with parameters in one of your modules and you want to isolate them, you can put them in a InitParams dictionary and the properties in the root of the module will be ignored
Example:
local module = {
InitParams = { -- These will be used by Eden instead.
Priority = 20
Initialize = false
}
Priority = 1 -- Eden will ignore this because InitParams is present.
}
return module
Guidelines
Eden is designed to have as few quirks as possible while giving you a reliable foundation to work on.
- Modules with the same name should be required by a path string instead of its raw name
If you have two modules in the project with the same name (except for each one being in different run contexts), Eden will warn you that it doesnât know which one to use. To resolve this, reference the file by its file path in the project.
Example: shared("Client/Framework/ModuleName")
- Modules that you donât want to be required on runtime must be under a directory named âstaticâ
By default, Eden will require and preload all of the modules under the projects folders when the game starts, if you have a module that isnât supportive of this behavior, make it a descendant of a folder named Static
(not case-sensitive).
For example, I want module X not to be required on game start because I will require it separately later. I can put it under a folder called Static
under any of the root project directories such as Client
and it will not be required. This is also great for things like roact
, which has a crazy amount of unused modules.
- To use Eden inside of non-module scripts, you cannot reliably use
shared()
If you want to use Eden inside of a script that is not a module, you have to require the module directly.
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local require = require(ReplicatedStorage:WaitForChild("SharedModules"):WaitForChild("Eden"))
require("ModuleName")
- If you have a module that contains variables the same as that of an optional param, Eden will pick up on it and try to use it.
For example, if you imported a module into Eden that has a Initialize
variable in the returned module table, Eden will try to use it, which could cause an error. In this case, you should use the InitParams structure seen above. Alternatively, you could put this file in a static directory and Eden wonât put it through the internal first-time initialization process.
Eden Module
The primary Eden module comes with some useful public methods to interact with the framework.
To access the Eden module, you could either require it the same way as any other module via shared("Eden")
or by requiring the instance directly. (ReplicatedStorage.SharedModules.Eden)
Methods
-
:AreModulesInitialized() :
boolean
Returns whether or not all modules have been initialized. Good for loading screens.
-
:AddModulesToInit(addModules :
{ string | ModuleScript }
)Adds modules to the initialization queue that otherwise wouldnt be initialized. Good for conditionally enabling/loading static modules for things like loading modules only under a specific placeId.
-
:InitModules(initFirst :
{string | ModuleScript}?
)Fires by default in the ServerLoader and ClientLoader scripts.
Initializes all modules in the context, with the option of explicitly defining what modules will:Init()
first with absolute priority.
Properties
-
.ModulesInitalizedEvent :
Signal
A signal that fires once all the modules have finished initializing.
Types
-
Signal
Used to mimic an
RBXScriptSignal
since theyâre not creatable.Methods:
-
:Connect(toExecute :
(any) -> ()
) âRBXScriptConnection
Connects a callback function to trigger when the signal is fired
-
:Once(toExecute :
(any) -> ()
) âRBXScriptConnection
Connects a callback function to trigger when the signal is fired, and then automatically disconnects itself from the signal.
-
:Fire(
any
)Invoke all connected callbacks
-
:Wait() â
any
Yeilds until the Signal is Fire()'d
-
Config
In the root directory of your repository, there should always be a Eden.config.lua
file. This file is the primary user facing configuration for Eden. (File is EdenConfig
under Eden
for studio users)
-
DEBUG_LEVEL :
number
(Default: 1)Very useful for getting insight on whats holding up your call stack.
1 = Errors & Warnings only, 2 = Phase info, 3 = Module timings -
DEBUG_IN_GAME :
boolean
(Default: false)If true, will print debug messages to the in-game console. Warnings and errors will always be printed to the in-game console regardless of the state of this option.
-
FIND_TIMEOUT :
number
(Default: 3)The max amount time in seconds Eden should wait for a module to exist.
-
LONG_LOAD_TIMEOUT :
number
(Default: 5)The amount of time in seconds Eden should wait before warning and running cyclical checks on modules involved in the call stack.
-
LONG_INIT_TIMEOUT :
number
(Default: 8)The amount of time in seconds Eden should wait before warning that a modules
:Init()
function is taking a long time. -
PATH_SEPERATOR :
string
(Default: â/â)The character which is used to seperate names in a path. For example, if your path serpator is â/â, then your requires will be
shared("Server/Example")
, but if its â.â, then your requires would beshared("Server.Example")
. -
STATIC_DIRECTORY_NAME :
string
(Default: âstaticâ)The non-case sensitive folder name Eden should look for when detecting static directories.
-
SCRIPTS_AS_STATIC_DIRECTORY :
boolean
(Default: true)When true, Eden will treat any type of script instance as a static directory, meaning decendant modules of a module or script wont be automatically required and :Init()'ed
In the event where you want a moduleâs child modules to go through the automatic Init, you could pass them through
:AddModulesToInit()
local module = {} local Eden = shared("Eden") Eden:AddModulesToInit(script:GetChildren()) return module
-
PCALL_NON_PRIORITY_MODULES :
boolean
(Default: false)If true, all modules that error during
:Init()
without an explicit Priority parameter set will not break the init chain. Default is set to false as:Init()
errors become less visible in the output.
Installation
Rojo/GitHub
If youâre using GitHub workflow (with or without Rojo), you can start using Eden by pressing âUse this templateâ at the top of the repository.
Studio
If youâre not using a GitHub workflow and want to use Eden in native Roblox Studio, run the following loader code in the studio Command Bar (View > Command Bar) and it will populate studio with the correct modules. You can also use the manual installation guide:
Loader code
Enable HTTP requests by going to [Home â Game Settings â Security â Allow HTTP Requests] in studio (You may disable this after), then paste and run the following code in the command bar [View â Command Bar]:
-- This has intentionally sloppy error handling, if it breaks let it break and report it.
local RawRepoURL = "https://raw.githubusercontent.com/Stratiz/Eden/main/"
local GitHubApiURL = "https://api.github.com/repos/Stratiz/Eden/contents/"
local HttpService = game:GetService("HttpService")
local function HttpGet(url : string)
return HttpService:GetAsync(url)
end
local function MakeFileFromGithub(filename, url, alias)
print("Fetching", filename)
local FileNameParts = string.split(filename, ".")
local TrueFileName = FileNameParts[1]
table.remove(FileNameParts, 1)
local FileType = table.concat(FileNameParts, ".")
local FileContent = HttpGet(url)
local ScriptInstance
if FileNameParts[#FileNameParts] == "lua" then
if FileNameParts[#FileNameParts - 1] == "server" then
ScriptInstance = Instance.new("Script")
elseif FileNameParts[#FileNameParts - 1] == "client" then
ScriptInstance = Instance.new("LocalScript")
else
ScriptInstance = Instance.new("ModuleScript")
end
end
ScriptInstance.Name = alias or TrueFileName
ScriptInstance.Source = FileContent
return ScriptInstance
end
local function GetGithubFolder(path : string)
local NewFolder = Instance.new("Folder")
for _, TargetFile in HttpService:JSONDecode(HttpGet(GitHubApiURL..path)) do
if TargetFile.type == "dir" then
GetGithubFolder(TargetFile.path).Parent = NewFolder
elseif TargetFile.type == "file" then
MakeFileFromGithub(TargetFile.name, TargetFile.download_url).Parent = NewFolder
end
end
return NewFolder
end
local ToParent = {}
local function FindFolder(target, parent)
for DirectoryName, DirectoryData in pairs(target) do
if type(DirectoryData) == "table" then
local ClassName = DirectoryData["$className"]
if ClassName then
FindFolder(DirectoryData, parent[ClassName])
else
local Path = DirectoryData["$path"]
if string.match(Path, ".lua") then
local DirData = string.split(Path, "/")
local NewFile = MakeFileFromGithub(DirData[#DirData], RawRepoURL..Path, DirectoryName)
table.insert(ToParent, {Parent = parent, Instance = NewFile})
for key, value in DirectoryData do
if string.sub(key, 1, 1) ~= "$" then
FindFolder(DirectoryData, NewFile)
end
end
else
local NewFolder = GetGithubFolder(Path)
NewFolder.Name = DirectoryName
table.insert(ToParent, {Parent = parent, Instance = NewFolder})
FindFolder(DirectoryData, NewFolder)
end
end
end
end
end
print("Working...")
local ProjectJson = HttpService:JSONDecode(HttpGet(RawRepoURL.."default.project.json"))
FindFolder(ProjectJson.tree, game)
-- Ensures we only insert instances if everything succeeds
for _, Data in pairs(ToParent) do
if Data.Instance then
Data.Instance.Parent = Data.Parent
end
end
print("Done!")
Manual installation guide
-
Download the source code by pressing the
Code
button at the top of the repository and pressing âDownload ZIPâ -
Unzip the file and open the âsrcâ folder
-
In the studio, create a folder under
ServerScriptService
called âServerModulesâ, this folder is where you will put all of your server code modules. -
In studio, create a folder under
StarterPlayer -> StarterPlayerScripts
called âClientModulesâ, this folder is where you will put all of your client code modules. -
In the studio, create a folder under
ReplicatedStorage
called âSharedModulesâ, this folder is where you will put all of your code that needs to be shared between the client and server. -
In studio, copy and paste the contents of
Eden.lua
into a ModuleScript called âEdenâ under âSharedModulesâ folder inReplicatedStorage
-
In studio, copy and paste the contents of
Eden.config.lua
into a ModuleScript called âEdenConfigâ under the âEdenâ module in âSharedModulesâ -
In studio, copy and paste the contents of
ServerLoader.server.lua
into a Script called âServerLoaderâ directly underServerScriptService
-
In studio, copy and paste the contents of
ClientLoader.client.lua
into a Script called âClientLoaderâ directly underReplicatedFirst
-
Done!
Examples & Usage
For native Studio users
If youâre using Eden without a GitHub workflow follow these important guidelines:
-
Server modules will go under
ServerScriptService -> ServerModules
-
Shared modules which can be used by client or server will go under
ReplicatedStorage -> SharedModules
-
Client modules will go under
StarterPlayer -> StarterPlayerScripts -> ClientModules
Code
Hereâs an example of a barebones Eden module that makes use of all the parameters and features.
--= Root =--
local Example = {
-- All of the following parameters are optional.
Priority = 0, -- The default priority is 0. The higher the priority, the earlier the module will be loaded. Negative priorities are allowed and will always be loaded last.
Initialize = true -- Determines if this modules :Init function will be called. If false, the module will not be initialized. Suitable for disabling modules.
}
--= Dependencies =--
-- If the module has a unique name you don't need to use the path and you can require by name "Example".
--"Shared/Example" is the path to the module. This is the same as the path in the file explorer.
-- Including ---@module ModuleName after the shared require allows LSP to map the variable to the actual module.
local OtherExampleModule = shared("Shared/Example") ---@module Example
--= Initializers =--
function Example:Init() -- This function will be called when the module is initialized. This is also optional.
-- Do stuff here.
end
--= Return Module =--
return Example