{"id":17214316,"url":"https://github.com/metaxal/quickscript","last_synced_at":"2026-02-07T12:02:18.556Z","repository":{"id":48358320,"uuid":"115353980","full_name":"Metaxal/quickscript","owner":"Metaxal","description":"Easy scripting for DrRacket","archived":false,"fork":false,"pushed_at":"2025-11-21T17:05:20.000Z","size":487,"stargazers_count":18,"open_issues_count":22,"forks_count":7,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-11-23T16:03:21.953Z","etag":null,"topics":["drracket","racket"],"latest_commit_sha":null,"homepage":null,"language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Metaxal.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":"2017-12-25T17:35:37.000Z","updated_at":"2025-03-26T19:44:38.000Z","dependencies_parsed_at":"2023-10-16T06:32:23.869Z","dependency_job_id":"4bdea11b-8988-4e01-83d5-be8aa8e5fd65","html_url":"https://github.com/Metaxal/quickscript","commit_stats":{"total_commits":134,"total_committers":8,"mean_commits":16.75,"dds":"0.26865671641791045","last_synced_commit":"570bc284e29e5b904c58d746ea8646105a81b552"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/Metaxal/quickscript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Fquickscript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Fquickscript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Fquickscript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Fquickscript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Metaxal","download_url":"https://codeload.github.com/Metaxal/quickscript/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metaxal%2Fquickscript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29194007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T07:37:03.739Z","status":"ssl_error","status_checked_at":"2026-02-07T07:37:03.029Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["drracket","racket"],"created_at":"2024-10-15T03:02:32.449Z","updated_at":"2026-02-07T12:02:18.541Z","avatar_url":"https://github.com/Metaxal.png","language":"Racket","readme":"# Quickscript: Scripting engine for DrRacket\n\nQuickscript [[docs](https://www.cs.utah.edu/plt/snapshots/current/doc/quickscript/index.html)] is a tool for DrRacket which allows to quickly and easily extend DrRacket features, without having to restart it.\nThe scripts are automatically accessible from a new menu in DrRacket.\n\nThe [slides from RacketCon 2018](https://github.com/Metaxal/quickscript/blob/master/docs/racketcon-2018-quickscript.pdf) provide more context on the why of Quickscript.\n\n\n## 1. Installation\n\nQuickscript comes bundled with DrRacket.\n\nYou may want to install [additional scripts](https://github.com/Metaxal/quickscript-extra) (also [here](https://github.com/racket/racket/wiki/Quickscript-Scripts-for-DrRacket)), but Quickscript can also be used alone.\n\n## 2. Usage\n\nHave a look at the `Scripts` menu in DrRacket.\n\nSee the [docs](https://www.cs.utah.edu/plt/snapshots/current/doc/quickscript/index.html) for more information.\n\n## 3. Developing Quickscript\n\nIf you want to modify how Quickscript works, here's how to replace the bundled collection with the development one:\n\n1. Fork [quickscript on github](https://github.com/Metaxal/quickscript)\n2. In some local folder on your computer, clone from the forked repo:\n```shell\ngit clone https://github.com/\u003cyour-github-username\u003e/quickscript.git\n```\n3. Without changing directory, \n```shell\nraco pkg update --link quickscript\n```\nThis may require `sudo` if it was used when installing racket.\n\nNow the quickscript collection refers to the cloned repository.\n\n## 4. Translating Quickscript GUI\n\nAs Quickscript is used within DrRacket it is using its system for translation.\nStrings translation are part of the [Racket String Constants)[https://github.com/racket/string-constants] repo.\nSee the [docs](https://docs.racket-lang.org/string-constants/index.html).\n\n## 5. History\n\nQuickscript is the successor to [Script Plugin](https://github.com/Metaxal/script-plugin), with some differences:\n- Each Quickscript script is a **single file** (instead of 2), which makes it easier to share and modify.\n  - This is possible thanks to Racket's submodule system: the submodule containing the script's properties can be loaded without loading the script itself.\n- There is still one main directory for the user's new scripts, but Quickscript can **look for scripts in various directories**.\n- The **script library** can be managed with a **GUI**, making it easy to de/activate specific scripts, and add/remove script directories.\n- Racket's **package** system can be used to easily **share sets of scripts**.\n- **'Shadow' scripts** allow the user to install third-party scripts (e.g., from a package), change their properties for his/her needs, but still make sure these third-party scripts can be updated.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetaxal%2Fquickscript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetaxal%2Fquickscript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetaxal%2Fquickscript/lists"}