{"id":14966129,"url":"https://github.com/azawawi/ide-perl6","last_synced_at":"2025-08-29T02:40:18.470Z","repository":{"id":149410203,"uuid":"151831065","full_name":"azawawi/ide-perl6","owner":"azawawi","description":"Perl 6 language support for Atom-IDE","archived":false,"fork":false,"pushed_at":"2018-10-20T20:13:27.000Z","size":138,"stargazers_count":7,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-07T07:36:31.546Z","etag":null,"topics":["atom-plugin","ide","perl6"],"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/azawawi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2018-10-06T10:57:25.000Z","updated_at":"2021-05-12T14:03:13.000Z","dependencies_parsed_at":"2023-09-03T22:39:49.003Z","dependency_job_id":null,"html_url":"https://github.com/azawawi/ide-perl6","commit_stats":{"total_commits":63,"total_committers":1,"mean_commits":63.0,"dds":0.0,"last_synced_commit":"4e77958dc482411aba7dd3fb0dec2cec083c0ae7"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/azawawi/ide-perl6","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azawawi%2Fide-perl6","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azawawi%2Fide-perl6/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azawawi%2Fide-perl6/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azawawi%2Fide-perl6/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azawawi","download_url":"https://codeload.github.com/azawawi/ide-perl6/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azawawi%2Fide-perl6/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272612271,"owners_count":24964388,"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-29T02:00:10.610Z","response_time":87,"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":["atom-plugin","ide","perl6"],"created_at":"2024-09-24T13:35:51.825Z","updated_at":"2025-08-29T02:40:18.387Z","avatar_url":"https://github.com/azawawi.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IDE-Perl6\n\nPerl 6 language support for the [Atom IDE](https://atom.io/packages/atom-ide-ui)\npowered by [`App::Perl6LangServer`](\nhttps://modules.perl6.org/dist/App::Perl6LangServer:cpan:AZAWAWI). This language\nintegration is built on top of [atom-languageclient](\nhttps://github.com/atom/atom-languageclient).\n\n## Features:\n- Diagnostics (i.e. syntax check errors using `perl6 -c` )\n\n![screenshots/diagnostics-screenshot.gif](screenshots/diagnostics-screenshot.gif)\n\n## Plan / TODO:\n- [ ] Open Perl 6 downloads in browser if perl6 is not installed. (see [ide-java](https://github.com/atom/ide-java/blob/master/lib/main.js)).\n  ```\n  $ perl6 --version\n  ```\n\n- [ ] Install App::Perl6LangServer if it is not installed (see [ide-java](https://github.com/atom/ide-java/blob/master/lib/main.js)).\n\n  ```bash\n  perl6 -e \"use App::Perl6LangServer:ver(v0.0.2);\n  ```\n\n- [ ] Provide a feature list similar to [atom-ide-rust](https://github.com/rust-lang-nursery/atom-ide-rust)\n- [ ] Support VSCode in another plugin.\n- [ ] Provide source code formatting via [Perl6::Tidy](\nhttps://github.com/drforr/perl6-Perl6-Tidy/tree/master/bin).\n\n## Install\n\n- You can install from the command line with:\n\n```bash\n# Install IDE-Perl6 Atom plugin\n$ apm install ide-perl6\n```\n\n - Or you can install from the settings view (`Ctrl` + `,`) by searching for\n `ide-perl6`.\n\nNote: you need to have a working  installed Rakudo Perl 6 Compiler. You can\ninstall the latest monthly pre-compiled packages from\n [nxadm/rakudo-pkg](https://github.com/nxadm/rakudo-pkg) or Rakudo Star\n distribution from [here](https://rakudo.org/files).\n\n**Note:** You need also install `App::Perl6LangServer`:\n\n ```bash\n # To install Perl 6 language server executable.\n $ zef install App::Perl6LangServer\n\n # If you are using rakudobrew, this is needed to update executable path after\n # installation.\n $ rakudobrew rehash\n\n ```\n\n## Debugging\n\nIf the plugin is not working as expected, you can try enabling logging to debug\nit:\n\n- Open the atom console via `Ctrl` + `Shift` + `I`.\n- Enter `atom.config.set('core.debugLSP', true)` in the console.\n- Reload Atom via `Ctrl` + `Shift` + `F5`.\n\n## Author\n\nAhmad M. Zawawi, [azawawi](https://github.com/azawawi/) on #perl6.\n\n## See Also\n\n- Specification:\n  - [JSON-RPC 2.0 Specification](https://www.jsonrpc.org/specification).\n  - [Language Server Protocol](https://microsoft.github.io/language-server-protocol/specification).\n- Plugin / Extension:\n  - [Perl 6 language support in Visual Studio Code](https://github.com/scriplit/vscode-languageserver-perl6).\n- Language Server:\n  - [App::LanguageServer](https://github.com/cazador481/App-LanguageServer-Perl)\n\\- Perl Language Server.\n  - [Perl 6 language support in vscode](\n    https://github.com/scriplit/vscode-languageserver-perl6) - Perl 6 language server that uses JavaScript for `perl6 -c` syntax checking.\n- Miscellaneous:\n  - [Compiler stages and targets in Perl 6](https://perl6.online/2017/12/31/compiler-stages-and-targets/).\n\n## License\n\n[MIT License](LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazawawi%2Fide-perl6","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazawawi%2Fide-perl6","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazawawi%2Fide-perl6/lists"}