{"id":25999594,"url":"https://github.com/hongjr03/tinymist-nightly-installer","last_synced_at":"2026-04-16T23:03:07.370Z","repository":{"id":278919429,"uuid":"937173373","full_name":"hongjr03/tinymist-nightly-installer","owner":"hongjr03","description":"Install the nightly version of Tinymist!","archived":false,"fork":false,"pushed_at":"2025-04-02T14:44:51.000Z","size":54,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-03T14:21:25.146Z","etag":null,"topics":["script","tinymist","typst"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/hongjr03.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":"2025-02-22T14:10:20.000Z","updated_at":"2025-04-02T14:17:56.000Z","dependencies_parsed_at":"2025-02-22T15:22:45.017Z","dependency_job_id":"8b93f213-4b9a-4dc0-a8c4-4ef48522c285","html_url":"https://github.com/hongjr03/tinymist-nightly-installer","commit_stats":null,"previous_names":["hongjr03/tinymist-nightly-installer"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/hongjr03/tinymist-nightly-installer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hongjr03%2Ftinymist-nightly-installer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hongjr03%2Ftinymist-nightly-installer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hongjr03%2Ftinymist-nightly-installer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hongjr03%2Ftinymist-nightly-installer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hongjr03","download_url":"https://codeload.github.com/hongjr03/tinymist-nightly-installer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hongjr03%2Ftinymist-nightly-installer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31907728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"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":["script","tinymist","typst"],"created_at":"2025-03-05T18:40:39.592Z","updated_at":"2026-04-16T23:03:07.354Z","avatar_url":"https://github.com/hongjr03.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tinymist-(nightly)-installer\n\nEnglish | [简体中文](README.zh-CN.md)\n\nThis repository is used to install the nightly version of tinymist, downloading the latest build from [tinymist::ci](https://github.com/Myriad-Dreamin/tinymist/actions/workflows/release-vscode.yml). It can also be used to install the latest stable release.\n\n## Installation\n\nCopy the corresponding command to the terminal and run it.\n\n### Nightly\n\n- Unix (Bash):\n\n    ```bash\n    curl -sSL https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.sh | bash\n    ```\n\n- Windows (PowerShell):\n\n    ```powershell\n    iwr https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.ps1 -UseBasicParsing | iex\n    ```\n\n### Stable\n\n- Unix (Bash):\n\n    ```bash\n    curl -sSL https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.sh | bash -s -- --stable\n    ```\n\n- Windows (PowerShell):\n\n    ```powershell\n    iwr https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.ps1 -UseBasicParsing | iex -ArgumentList '--stable'\n    ```\n\n### Advanced Usage\n\nFor advanced usage scenarios, it's recommended to download the script first and then execute it locally:\n\n```bash\n# Download the script\ncurl -sSL https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.sh -o tinymist-installer.sh\nchmod +x tinymist-installer.sh\n\n# Execute with various options\n./tinymist-installer.sh [extension|binary] [--stable|--nightly|--run \u003crun_id\u003e|--pr \u003cpr_number\u003e]\n```\n\nExample usage:\n\n```bash\n# Install specific artifact from run ID\n./tinymist-installer.sh binary --run 13916708000\n\n# Install specific artifact from PR number\n./tinymist-installer.sh extension --pr 1500\n```\n\nAlternatively, you can use the direct pipe method, though it's less convenient for multiple uses:\n\n```bash\n# Install specific artifact from run ID\ncurl -sSL https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.sh | bash -s -- [extension|binary] --run \u003crun_id\u003e\n\n# Install specific artifact from PR number\ncurl -sSL https://github.com/hongjr03/tinymist-nightly-installer/releases/latest/download/run.sh | bash -s -- [extension|binary] --pr \u003cpr_number\u003e\n```\n\n## Features\n\n- Automatic detection of system architecture\n- Installation of both VS Code extension and binary\n- Support for both stable releases and nightly builds\n- Installation from specific GitHub Actions run IDs\n- Installation from Pull Request builds\n- Efficient handling of temporary files\n- Proper error handling and logging\n\n## Notes\n\n- Please ensure that your system has the [VSCode CLI](https://code.visualstudio.com/docs/editor/command-line) installed.\n- The script requires `curl`, `jq`, and `unzip` to function properly.\n- All downloaded and temporary files are properly managed and cleaned up after installation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhongjr03%2Ftinymist-nightly-installer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhongjr03%2Ftinymist-nightly-installer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhongjr03%2Ftinymist-nightly-installer/lists"}