{"id":19001276,"url":"https://github.com/alphafantomu/alphalibrary","last_synced_at":"2025-08-05T11:11:46.735Z","repository":{"id":141360024,"uuid":"77345490","full_name":"alphafantomu/AlphaLibrary","owner":"alphafantomu","description":"A database library full of modules to support game development on roblox!","archived":false,"fork":false,"pushed_at":"2017-03-01T01:56:58.000Z","size":47,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-21T13:25:41.907Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alphafantomu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2016-12-25T22:39:34.000Z","updated_at":"2021-07-13T17:16:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"f980d00f-87f4-4a93-8318-fc9201813fe3","html_url":"https://github.com/alphafantomu/AlphaLibrary","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alphafantomu/AlphaLibrary","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alphafantomu%2FAlphaLibrary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alphafantomu%2FAlphaLibrary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alphafantomu%2FAlphaLibrary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alphafantomu%2FAlphaLibrary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alphafantomu","download_url":"https://codeload.github.com/alphafantomu/AlphaLibrary/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alphafantomu%2FAlphaLibrary/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268883500,"owners_count":24323148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-05T02:00:12.334Z","response_time":2576,"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":[],"created_at":"2024-11-08T18:10:35.785Z","updated_at":"2025-08-05T11:11:46.715Z","avatar_url":"https://github.com/alphafantomu.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# About\nAlphaLibrary is a module loader, that runs sublibaries installed in the libary. The Library is a database containing sublibaries that \ncontain code for the server and client, which is intended to support game development on Roblox.\n\n## Features \n* **Simple Loading** - AlphaLibrary can be easily used and installed.\n  * Can be easily installed, just paste [Installer code](https://raw.githubusercontent.com/alphafantomu/AlphaLibrary/master/Install.lua) into studio command bar.\n  * Loader only contains 65 lines!\n* **Require to-load** - Libaries will not load unless, requested to. This won't impact game performance.\n* **Built for Roblox** - Made specifically for Roblox.\n* **Open Source** - AlphaLibrary is an open source, you can use all the modules you want!\n\n# Get AlphaLibrary\nIn-order to install AlphaLibrary, paste the code below in your studio command bar.\n\n```lua\n  local Http = game:service'HttpService';\n  local SavedHttp = Http.HttpEnabled;\n  Http.HttpEnabled = true;\n  local Install = 'https://raw.githubusercontent.com/alphafantomu/AlphaLibrary/master/Install.lua';\n  loadstring(Http:GetAsync(Install))();\n  Http.HttpEnabled = SavedHttp;\n```\n## What you just got:\n\n* The main library module \"AlphaLibrary\" in 'ReplicatedStorage'\n* All the modules in 'game' or 'DataModel'\n\nPlease note that installing AlphaLibrary will **not** change any behavior in your game. AlphaLibrary does not affect preexisting code.\n\n# Updating AlphaLibrary\n\nTo update AlphaLibrary, make sure to **back up your place file** and run the install code above. Existing code will not be tempered\nwith, AlphaLibrary's default libaries will be overriden.\n\n## Usage\n\nTo load AlphaLibrary on your server and client, use the following code:\n\n```lua\n  local ReplicatedStorage = game:service'ReplicatedStorage';\n  local Library = require(ReplicatedStorage:WaitForChild('AlphaLibrary', 10));\n  \n```\n### Loading a Library\n\nUsually using Library:LoadLibrary(argumentOne, argumentTwo), argumentTwo should be either 0 or 1, 0 making just search for a library \nof that name, 1 being directly accessing the library.\n```lua\n  Library:LoadLibrary('library_example', 0)\n```\n\nCurrently, an example cannot be made as the Library got revamped.\n\n## Update / Change Log\n\nFor help or questions, you can contact me @[hyperionGM](https://www.roblox.com/users/21905318/profile). \nYou might have to follow me to message me!\n\n##### February 22nd, 2017 [0.2.0.0]\n  - Revamped the entire module system, better and easier installation.\n  - Libaries currently have not be implemented.\n\n######\nP.S I didn't know how to do text formatting, so I looked at Nevermore library as a guide. You can find the Nevermore Library here! \n[NevermoreEngine](https://github.com/Quenty/NevermoreEngine)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falphafantomu%2Falphalibrary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falphafantomu%2Falphalibrary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falphafantomu%2Falphalibrary/lists"}