{"id":21314863,"url":"https://github.com/devdyna/glowberry","last_synced_at":"2026-02-15T19:33:13.668Z","repository":{"id":237717368,"uuid":"794993003","full_name":"DevDyna/GlowBerry","owner":"DevDyna","description":"Kubejs script base with recipe schemas and globalized utils","archived":false,"fork":false,"pushed_at":"2024-12-10T10:44:20.000Z","size":95,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T22:11:50.592Z","etag":null,"topics":["kubejs","kubejs-script","kubejs-scripts"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/DevDyna.png","metadata":{"files":{"readme":"README.md","changelog":null,"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}},"created_at":"2024-05-02T11:23:13.000Z","updated_at":"2024-12-10T10:44:24.000Z","dependencies_parsed_at":"2025-04-12T22:11:51.218Z","dependency_job_id":"6dcfc07c-93ba-4442-8579-c3f21632eb0e","html_url":"https://github.com/DevDyna/GlowBerry","commit_stats":null,"previous_names":["devdyna/glowberry"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DevDyna/GlowBerry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDyna%2FGlowBerry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDyna%2FGlowBerry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDyna%2FGlowBerry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDyna%2FGlowBerry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevDyna","download_url":"https://codeload.github.com/DevDyna/GlowBerry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevDyna%2FGlowBerry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29487462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["kubejs","kubejs-script","kubejs-scripts"],"created_at":"2024-11-21T18:16:17.388Z","updated_at":"2026-02-15T19:33:13.652Z","avatar_url":"https://github.com/DevDyna.png","language":"JavaScript","readme":"# GlowBerry\n Originally made for Ironberry Modpack\n\n KUBEJS script-base\n\n How to use:\n\n## Startup Side\n[`Direct link`](https://github.com/DevDyna/GlowBerry/blob/main/startup_scripts/HowToUse.js)\n\n## Server Side\n[`Direct link`](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/HowToUse.js)\n\n## Client Side\n[`NotYetCompleted`]\n\n\n\n## GitHub Side\n\n### How to make a custom Schema                        \n\n- Open [startup scripts](https://github.com/DevDyna/GlowBerry/blob/main/startup_scripts/base/global.js)\n \n - Add a new field on [global.startup.mods](https://github.com/DevDyna/GlowBerry/blob/main/startup_scripts/base/global.js#L4) based on **mod name** equal `Boolean`\n - Add a new field on [global.server.recipes.compat](https://github.com/DevDyna/GlowBerry/blob/main/startup_scripts/base/global.js#L25) based on **json type name** equal `Function`\n - Clone [line 94](https://github.com/DevDyna/GlowBerry/blob/main/startup_scripts/base/global.js#L94) removing slash comment and replace `modname` and `mod-id` based on previous **mod name**\n\n- Clone .exampleSchema.js.disabled on [server scripts](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/base/compat/schemas/.exampleSchema.js.disabled)\n\n- Change `modname` with your **mod name** on [line 9](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/base/compat/schemas/.exampleSchema.js.disabled#L9)\n\n- Change `modname` with your **mod name** and `functionName` with your **json type name** on [line 11](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/base/compat/schemas/.exampleSchema.js.disabled#L11)\n\n- Insert all parameters inside the brackets on [line 11](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/base/compat/schemas/.exampleSchema.js.disabled#L11)\n\n- Insert your code on [line 13](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/base/compat/schemas/.exampleSchema.js.disabled#L13)\n\n- (Optional) If you are using VScode you can use **@param** to add a preview of what was the input parameters [example](https://github.com/DevDyna/GlowBerry/blob/main/server_scripts/base/compat/schemas/ae2.js#L10)\n\n- To add multiple **json types** you can repeat same process as before\n  **note: if modname still same isn't need to recreate!**\n \n### Do you want contribute? Send it as pull request on GITHUB!","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevdyna%2Fglowberry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevdyna%2Fglowberry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevdyna%2Fglowberry/lists"}