
Framework Library | All-in-One Integration for ESX, QBCore and Custom Frameworks
Easily integrate every framework in your script. No need to write different code for each framework.
No more creating 3 separate packages for every resource. With Framework Library, you have every framework, including standalone, at one place!
It does not matter if your users are on ESX, QBCore or whatever other framework.
You want to get the players’ money, job, …? Just one line of code, not different implementations for every framework.
This means: Easily support EVERY Framework in your script within seconds
We have implementations for Lua, C# and JS/TS
Get started
JS: https://github.com/Garmingo/framework-js-client - https://github.com/Garmingo/framework-js-server
Lua: https://github.com/Garmingo/framework-lua
C#: https://github.com/Garmingo/FrameworkLibraryNET
Examples
Lua Usage
local framework = Framework:new()
local money = framework.getPlayerWalletMoney()
local job = framework.getPlayerJobName()
and more...
JavaScript Usage
const framework = new Framework();
const money = framework.getPlayerWalletMoney();
const jobGrade = framework.getPlayerJobGrade();
and more...
C# Usage
private Framework framework = new Framework();
int money = framework.getPlayerWalletMoney();
int jobGrade = framework.getPlayerJobGrade();
and more...
License
You can find the license here: framework-js-client/LICENSE.md at master · Garmingo/framework-js-client · GitHub
Got an idea? Let us know