{"id":23860184,"url":"https://github.com/splo/vscode-bevy-inspector","last_synced_at":"2025-09-08T07:31:15.716Z","repository":{"id":268302200,"uuid":"903905867","full_name":"splo/vscode-bevy-inspector","owner":"splo","description":"Bevy Inspector Visual Studio Code Extension","archived":false,"fork":false,"pushed_at":"2025-01-02T17:15:35.000Z","size":101,"stargazers_count":26,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-01-02T18:24:09.796Z","etag":null,"topics":["bevy","visual-studio-code-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/splo.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":"2024-12-15T21:18:02.000Z","updated_at":"2025-01-02T18:19:55.000Z","dependencies_parsed_at":"2024-12-15T22:28:57.156Z","dependency_job_id":"603b9637-4e2d-4b61-809e-8bc1c48f4464","html_url":"https://github.com/splo/vscode-bevy-inspector","commit_stats":null,"previous_names":["splo/vscode-bevy-inspector"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splo%2Fvscode-bevy-inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splo%2Fvscode-bevy-inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splo%2Fvscode-bevy-inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/splo%2Fvscode-bevy-inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/splo","download_url":"https://codeload.github.com/splo/vscode-bevy-inspector/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232288459,"owners_count":18500118,"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":["bevy","visual-studio-code-extension"],"created_at":"2025-01-03T04:24:04.204Z","updated_at":"2025-09-08T07:31:15.682Z","avatar_url":"https://github.com/splo.png","language":"TypeScript","readme":"# Bevy Inspector Visual Studio Code Extension\n\nDisplay live data from your [Bevy](https://bevyengine.org/) application using the [Bevy Remote Protocol HTTP plugin](https://docs.rs/bevy/0.16.0/bevy/remote/index.html).\n\n## Features\n\n- 🧩 Display Bevy entities, components, resources and schema registry right in your editor side view.\n\n\u003cimg alt=\"Display\" src=\"./docs/images/display.png\" height=\"256\" /\u003e\n\n- ✏️ Insert or modify component and resource values (only on Bevy `0.16`+).\n\n\u003cimg alt=\"Insert components\" src=\"./docs/images/insert-components.gif\" height=\"256\" /\u003e\n\n- 🏗️ Spawn, destroy or re-parent entities.\n\n\u003cimg alt=\"Reparent\" src=\"./docs/images/reparent.gif\" height=\"256\" /\u003e\n\n- 🔗 Manage multiple Bevy servers. Compatible with Bevy `0.15`, `0.16` and more.\n\n\u003cimg alt=\"Servers\" src=\"./docs/images/servers.png\" height=\"192\" /\u003e\n\n- 🔃 Refresh data when wanted or via automatic polling with configurable delay.\n\n\u003cimg alt=\"Refresh\" src=\"./docs/images/refresh.png\" height=\"192\" /\u003e\n\n## Usage\n\nThe extension can be installed from:\n\n- The [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=splo.vscode-bevy-inspector).\n- The [Open VSX Registry](https://open-vsx.org/extension/splo/vscode-bevy-inspector).\n\nThere are example servers at [`examples/`](./examples) that show valid Bevy application configurations for different Bevy versions.\n\nIn short here are the requirements:\n\n- A Rust project with the `bevy` dependency and the `bevy_remote` feature enabled. Bevy should be at least `0.15.x` but `0.16.x` is required for multiple features (display resources and registry, modify components and resources).\n\n```toml\n# Cargo.toml\n[dependencies]\nbevy = { version = \"0.16.0\", features = [\"bevy_remote\"] }\n```\n\n- A Bevy application with the `RemotePlugin` and `RemoteHttpPlugin` plugins enabled.\n\n```rust\n# src/main.rs\nfn main() {\n    App::new()\n        .add_plugins(DefaultPlugins)\n        .add_plugins(RemotePlugin::default())\n        .add_plugins(RemoteHttpPlugin::default())\n        .run();\n}\n```\n\nBy default the connection URL is `http://127.0.0.1:15702`.\n\n## Development\n\nRead the [contributing guide](https://github.com/splo/vscode-bevy-inspector/CONTRIBUTING.md):\n\n- [Reporting Issues](./CONTRIBUTING.md#reporting-issues)\n- [Pull Requests](./CONTRIBUTING.md#pull-requests)\n- [Code Style](./CONTRIBUTING.md#code-style)\n- [Development Tasks](./CONTRIBUTING.md#development-tasks)\n  - [Setup](./CONTRIBUTING.md#setup)\n  - [Building and Running](./CONTRIBUTING.md#building-and-running)\n  - [Running Bevy Example Servers](./CONTRIBUTING.md#running-bevy-example-servers)\n  - [Code Style, Linting, and Formatting](./CONTRIBUTING.md#code-style-linting-and-formatting)\n  - [Storybook](./CONTRIBUTING.md#storybook)\n- [Project Structure](./CONTRIBUTING.md#project-structure)\n  - [Main VS Code Extension Entry Point](./CONTRIBUTING.md#main-vs-code-extension-entry-point)\n  - [React-Based Webviews](./CONTRIBUTING.md#react-based-webviews)\n  - [Shared Libraries](./CONTRIBUTING.md#shared-libraries)\n- [Questions](./CONTRIBUTING.md#questions)\n","funding_links":[],"categories":["Editors and Workflow"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplo%2Fvscode-bevy-inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsplo%2Fvscode-bevy-inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsplo%2Fvscode-bevy-inspector/lists"}