{"id":15539067,"url":"https://github.com/patricklx/intellij-emberjs-experimental","last_synced_at":"2025-04-15T21:41:32.870Z","repository":{"id":37767952,"uuid":"412986421","full_name":"patricklx/intellij-emberjs-experimental","owner":"patricklx","description":"Intellij plugin for ember js with more experimental features","archived":false,"fork":false,"pushed_at":"2025-04-11T23:07:58.000Z","size":2459,"stargazers_count":16,"open_issues_count":4,"forks_count":7,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-04-12T00:22:33.519Z","etag":null,"topics":["emberjs","intellij-plugin"],"latest_commit_sha":null,"homepage":"https://plugins.jetbrains.com/plugin/15499-ember-experimental-js","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patricklx.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2021-10-03T05:37:01.000Z","updated_at":"2025-04-11T23:08:01.000Z","dependencies_parsed_at":"2023-12-29T23:30:01.613Z","dependency_job_id":"d4ed90b9-3a4a-4563-8d37-d90033b16fc3","html_url":"https://github.com/patricklx/intellij-emberjs-experimental","commit_stats":{"total_commits":1130,"total_committers":26,"mean_commits":43.46153846153846,"dds":0.7530973451327434,"last_synced_commit":"03ca21172efc829cf09abe4e467e8f8799a00ffb"},"previous_names":[],"tags_count":261,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklx%2Fintellij-emberjs-experimental","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklx%2Fintellij-emberjs-experimental/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklx%2Fintellij-emberjs-experimental/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patricklx%2Fintellij-emberjs-experimental/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patricklx","download_url":"https://codeload.github.com/patricklx/intellij-emberjs-experimental/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249160404,"owners_count":21222458,"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","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":["emberjs","intellij-plugin"],"created_at":"2024-10-02T12:09:02.791Z","updated_at":"2025-04-15T21:41:32.836Z","avatar_url":"https://github.com/patricklx.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![Logo](doc/logo.png) intellij-emberjs\n===============================================================================\n\nThis plugin provides basic [Ember.js](http://emberjs.com/) support to all\n[JetBrains](https://www.jetbrains.com/) IDEs that support JavaScript.\n\nfork of https://github.com/Turbo87/intellij-emberjs with additional features\n\n\nFeatures\n-------------------------------------------------------------------------------\n\n![Navigate → Class...](doc/goto-class.png)\nExperimental:\n- Handlebars references for tags/mustache paths and tag attributes\n- Handlebars autocompletion for tags and mustache paths, also from yields and named yields\n- resolves {{or x y z}} to the first resolvable option, this makes {{component (or x y)}} work, e.g in power-select\n- Handlebars parameter hints for helpers/modifiers and components\n- Handlebars renaming for mustache ids and html tags\n- Glint Support\n- Gts Support\n- Find Usage between Js/Ts and Hbs\n\nBasic:\n- Ember.js project discovery when imported from existing sources\n- Automatically sets the language level to ES6\n- Marks `app`, `public` and `tests` folders as source, resource and test folders\n- Marks `node_modules` and `bower_components` as library folders\n- Enable JSHint using `.jshintrc`\n- Quick navigation via `Navigate → Class...` and `Navigate → Related Symbol...`\n  for all major app components\n- Generate Ember.js files via `ember generate`\n- Basic reference resolving and completion for e.g. `DS.belongsTo('user')`\n- Live templates\n[more...](doc/features.md)\n\n\nInstallation\n-------------------------------------------------------------------------------\n\nThis plugin is published on the\n[JetBrains Plugin Repository](https://plugins.jetbrains.com/plugin/15499-ember-experimental-js): \n\n    Preferences... → Plugins → Browse Repositories ... → Search for \"Ember.js\"\n\n\n### From Source\n\nClone this repository:\n\n    git clone https://github.com/patricklx/intellij-emberjs-experimental.git\n    cd intellij-emberjs-experimental\n\nBuild a plugin zip file:\n\n    ./gradlew buildPlugin\n\nInstall the plugin from `/build/distributions/Ember.js.zip`:\n\n    Preferences... → Plugins → Install plugin from disk ...\n\n\nDevelopment\n-------------------------------------------------------------------------------\n\nRun IntelliJ IDEA Ultimate with the current plugin pre-installed:\n\n    ./gradlew runIdea\n\nRun the test suite:\n\n    ./gradlew test\n\n\nLinks\n-------------------------------------------------------------------------------\n\n- [JetBrains/intellij-community](https://github.com/JetBrains/intellij-community) – \n  the IntelliJ community edition source code\n- [JetBrains/intellij-plugins](https://github.com/JetBrains/intellij-plugins) – \n  a collection of officially supported IntelliJ plugins\n- [JetBrains/gradle-intellij-plugin](https://github.com/JetBrains/gradle-intellij-plugin) – \n  the official [Gradle](http://gradle.org/) plugin for building IntelliJ plugins\n- [kristianmandrup/emberjs-plugin](https://github.com/kristianmandrup/emberjs-plugin) – \n  the predecessor and inspiration for this plugin\n\n\nLicense\n-------------------------------------------------------------------------------\n\nThis project is licensed under the [Apache 2.0 License](LICENSE).\n\n- [Font-Awesome-SVG-PNG](https://github.com/encharm/Font-Awesome-SVG-PNG) is licensed under the MIT license\n- [Font-Awesome](http://fontawesome.io/) is licensed under the [SIL OFL 1.1](http://scripts.sil.org/OFL)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatricklx%2Fintellij-emberjs-experimental","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatricklx%2Fintellij-emberjs-experimental","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatricklx%2Fintellij-emberjs-experimental/lists"}