{"id":15137981,"url":"https://github.com/doonv/bevy_dev_console","last_synced_at":"2025-08-25T05:23:55.830Z","repository":{"id":212337371,"uuid":"723791061","full_name":"doonv/bevy_dev_console","owner":"doonv","description":"Developer console plugin for the Bevy game engine.","archived":false,"fork":false,"pushed_at":"2025-01-09T20:01:02.000Z","size":609,"stargazers_count":130,"open_issues_count":10,"forks_count":12,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-26T08:04:43.799Z","etag":null,"topics":["bevy","console","developer-console","rust","source"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/doonv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2023-11-26T19:13:37.000Z","updated_at":"2025-06-21T08:17:27.000Z","dependencies_parsed_at":"2023-12-28T19:32:38.733Z","dependency_job_id":"949eee57-75e3-4e6e-9c77-1c10e733b8bb","html_url":"https://github.com/doonv/bevy_dev_console","commit_stats":{"total_commits":89,"total_committers":3,"mean_commits":"29.666666666666668","dds":"0.022471910112359605","last_synced_commit":"533603f4838b7379a9ef773d5bc7f50efb3089af"},"previous_names":["doonv/bevy_dev_console"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/doonv/bevy_dev_console","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doonv%2Fbevy_dev_console","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doonv%2Fbevy_dev_console/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doonv%2Fbevy_dev_console/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doonv%2Fbevy_dev_console/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doonv","download_url":"https://codeload.github.com/doonv/bevy_dev_console/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doonv%2Fbevy_dev_console/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272008787,"owners_count":24857658,"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-25T02:00:12.092Z","response_time":1107,"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":["bevy","console","developer-console","rust","source"],"created_at":"2024-09-26T07:04:06.417Z","updated_at":"2025-08-25T05:23:55.790Z","avatar_url":"https://github.com/doonv.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bevy_dev_console\n\n`bevy_dev_console` is a Source-inspired developer console plugin for the [Bevy Game Engine](https://github.com/bevyengine/bevy).\n\n![Image of the developer console](doc/console.png)\n\n\u003e [!WARNING]  \n\u003e\n\u003e `bevy_dev_console` is currently in its early development stages. Expect breaking changes in the near future (especially when using the built-in command parser). For this reason its only available as a git package at the moment.\n\n## Features\n\n- Log viewing\n  - View all the hidden data from any log message by hovering over it.\n- Powerful Built-in parser language built specifically for `bevy_dev_console`. ([Documentation](https://github.com/doonv/bevy_dev_console/wiki/Built%E2%80%90in-Parser))\n  - Calculations\n  - Variables\n    - Uses a simplified version of ownership and borrowing\n  - Standard library (Doesn't have much at the moment)\n  - [Custom native functions](https://github.com/doonv/bevy_dev_console/blob/master/examples/custom_functions.rs) (`World` access included!)\n  - [Many types](https://github.com/doonv/bevy_dev_console/wiki/Built%E2%80%90in-Parser#types)\n  - Resource viewing and modification\n    - Enums\n    - Structs\n  - ~~Entity queries~~ [*Coming Soon...*](https://github.com/doonv/bevy_dev_console/issues/3) (Syntax suggestions would be appreciated!)\n  - ...and more!\n\n## Usage\n\n1. Add the `bevy_dev_console` git package.\n\n    ```bash\n    cargo add --git https://github.com/doonv/bevy_dev_console.git\n    ```\n\n2. Import the `prelude`.\n\n    ```rust\n    use bevy_dev_console::prelude::*;\n    ```\n\n3. Add the plugins.\n\n    ```rust,no_run\n    use bevy::{prelude::*, log::LogPlugin};\n    use bevy_dev_console::prelude::*;\n\n    App::new()\n        .add_plugins((\n            // Add the log plugin with the custom log layer\n            DefaultPlugins.set(LogPlugin {\n                custom_layer: custom_log_layer,\n                ..default()\n            }),\n            // Add the dev console plugin itself.\n            DevConsolePlugin,\n        ))\n        .run();\n    ```\n\n4. That should be it! You can now press the `` ` `` / `~` key on your keyboard and it should open the console!\n\n## Togglable Features\n\n**(default)** `builtin-parser` includes the default parser. Disabling this allows you to remove the built-in parser and replace it with your own (or you could do nothing and make the console into a log reader).\n\n## Bevy Compatibility\n\n| bevy   | bevy_dev_console |\n| ------ | ---------------- |\n| 0.14.* | git (master)     |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoonv%2Fbevy_dev_console","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoonv%2Fbevy_dev_console","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoonv%2Fbevy_dev_console/lists"}