{"id":22582933,"url":"https://github.com/fuseraft/kiwi","last_synced_at":"2026-04-01T22:04:28.598Z","repository":{"id":10220016,"uuid":"12317973","full_name":"fuseraft/kiwi","owner":"fuseraft","description":"The Kiwi Programming Language 🥝","archived":false,"fork":false,"pushed_at":"2026-03-23T03:13:15.000Z","size":13310,"stargazers_count":39,"open_issues_count":4,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-03-23T23:49:04.960Z","etag":null,"topics":["dotnet","language","programming-language"],"latest_commit_sha":null,"homepage":"https://fuseraft.com/kiwi","language":"C#","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/fuseraft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2013-08-23T08:14:23.000Z","updated_at":"2026-03-23T03:13:19.000Z","dependencies_parsed_at":"2023-11-14T16:41:46.086Z","dependency_job_id":"7da9fb75-6fa0-437d-9843-9d33dbb15426","html_url":"https://github.com/fuseraft/kiwi","commit_stats":null,"previous_names":["fuseraft/noctis","fuseraft/astral","fuseraft/kiwi"],"tags_count":42,"template":false,"template_full_name":null,"purl":"pkg:github/fuseraft/kiwi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuseraft%2Fkiwi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuseraft%2Fkiwi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuseraft%2Fkiwi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuseraft%2Fkiwi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fuseraft","download_url":"https://codeload.github.com/fuseraft/kiwi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fuseraft%2Fkiwi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292631,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: 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":["dotnet","language","programming-language"],"created_at":"2024-12-08T06:12:55.429Z","updated_at":"2026-04-01T22:04:28.587Z","avatar_url":"https://github.com/fuseraft.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kiwi 🥝\n\nKiwi is a modern, lightweight scripting language built for expressiveness and utility.\n\n## Installation\n\n**Linux / macOS** — one-liner installer:\n```bash\ncurl -sSL https://raw.githubusercontent.com/fuseraft/kiwi/main/install.sh | bash\n```\n\n**Windows** — run in PowerShell:\n```powershell\nirm https://raw.githubusercontent.com/fuseraft/kiwi/main/install.ps1 | iex\n```\n\nBoth installers build Kiwi from source (requires the [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)) and add `kiwi` to your PATH. Open a new terminal and you're ready:\n```bash\nkiwi --help\n```\n\n### Installer options\n\n| Flag | Description |\n|------|-------------|\n| `--user` | Install for current user only — `~/.kiwi` (default) |\n| `--system` | Install system-wide — `/opt/kiwi`, symlinked to `/usr/local/bin` |\n| `--prefix=PATH` | Install to a custom directory |\n| `--url=URL` | Download a pre-built binary instead of building from source |\n| `--update` | Update to the latest version |\n| `--uninstall` | Remove Kiwi from the system |\n\n```bash\n# Examples\n./install.sh --system          # system-wide install (Linux/macOS)\n./install.sh --prefix=/usr/local\n./install.sh --uninstall\n```\n\n### Manual install (build from source)\n\n```bash\ngit clone https://github.com/fuseraft/kiwi.git\ncd kiwi\n./build.sh\n```\n\n### Docker\n\n```bash\ndocker build -t kiwi .\ndocker run --rm -v $(pwd):/scripts kiwi /scripts/hello.kiwi\n```\n\n## Visual Studio Code Integration\n\nFor syntax highlighting and code snippets in VS Code, install the [Kiwi language extension](https://marketplace.visualstudio.com/items?itemName=fuseraft.kiwi-lang).\n\nOpen VS Code, launch Quick Open (\u003ckbd\u003eCtrl\u003c/kbd\u003e+\u003ckbd\u003eP\u003c/kbd\u003e), paste the following command, and press Enter:\n\n```\next install fuseraft.kiwi-lang\n```\n\n## Package Manager\n\n[Zest](https://github.com/fuseraft/zest) is the official package manager for Kiwi.\nInstall community packages directly from GitHub with semver constraints and a lock file.\n\n```bash\nzest install owner/repo\n```\n\n## Documentation\n\nThe [docs](docs/README.md) provide comprehensive information on language features, usage, and the [standard library](docs/lib/README.md).\n\nThere are also some [examples](/examples/) you can run!\n\n## Test Suite\n\nExplore the [test suite](tests/lib/suite) for a variety of test cases. To run the test suite:\n\n```shell\n$ kiwi tests/test\n```\n\n## Contributing\n\nContributions are highly appreciated! Here’s how to get involved:\n\n1. **Join the Discussion**: Join the community on [Discord](https://discord.gg/9PW3857Bxs).\n2. **Fork the Repository**: Fork Kiwi on GitHub.\n3. **Clone the Repository**: Clone your forked copy to your machine.\n4. **Set Up Your Environment**: Follow the steps in \"Getting Started.\"\n5. **Make Changes**: Implement new features or fix issues.\n6. **Test Your Changes**: Run all tests to ensure stability.\n7. **Submit a Pull Request**: Submit your changes for review.\n\nFor more details, please refer to [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuseraft%2Fkiwi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffuseraft%2Fkiwi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffuseraft%2Fkiwi/lists"}