{"id":19534038,"url":"https://github.com/foxglove/omgidl","last_synced_at":"2026-04-30T00:10:26.798Z","repository":{"id":181063024,"uuid":"651704733","full_name":"foxglove/omgidl","owner":"foxglove","description":"Monorepo offering packages for typescript support of OMG IDL schemas in Foxglove applications","archived":false,"fork":false,"pushed_at":"2025-04-11T14:25:10.000Z","size":1407,"stargazers_count":6,"open_issues_count":2,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-11T15:39:38.412Z","etag":null,"topics":["cdr","idl","omg","parser"],"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/foxglove.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null}},"created_at":"2023-06-09T21:32:30.000Z","updated_at":"2025-04-11T14:25:13.000Z","dependencies_parsed_at":"2023-11-15T03:27:04.692Z","dependency_job_id":"c4ed198c-ce32-4a4a-a11f-3fb5190f86ea","html_url":"https://github.com/foxglove/omgidl","commit_stats":null,"previous_names":["foxglove/omgidl"],"tags_count":35,"template":false,"template_full_name":"foxglove/template-typescript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxglove%2Fomgidl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxglove%2Fomgidl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxglove%2Fomgidl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/foxglove%2Fomgidl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/foxglove","download_url":"https://codeload.github.com/foxglove/omgidl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251001275,"owners_count":21520919,"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":["cdr","idl","omg","parser"],"created_at":"2024-11-11T02:12:04.031Z","updated_at":"2026-04-30T00:10:26.791Z","avatar_url":"https://github.com/foxglove.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Foxglove OMG IDL\n\nThis repo contains implementations of OMG IDL specifications used by [Foxglove](https://www.foxglove.dev). The parsers expect schemas according to the MCAP specifications: [ros2idl](https://mcap.dev/spec/registry#ros2idl), [omgidl](https://mcap.dev/spec/registry#omgidl).\n\n| Package name                     | Description                                                                                       | Reference                                                                                                         | Version                                                                                                                      |\n| -------------------------------- | ------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |\n| `@foxglove/omgidl-parser`        | Parse OMG IDL schemas – [README](./packages//omgidl-parser/README.md)                             | [Interface Definition Language Specification](https://www.omg.org/spec/IDL/4.2/PDF)                               | [![](https://shields.io/npm/v/@foxglove/omgidl-parser)](https://www.npmjs.com/package/@foxglove/omgidl-parser)               |\n| `@foxglove/omgidl-serialization` | De/Serialize data using IDL to CDR and CDR2 – [README](./packages/omgidl-serialization/README.md) | [Common Object Request Broker Architecture (CORBA) Specification, Part 2: CORBA Interoperability](https://www.omg.org/spec/CORBA/3.4/Interoperability/PDF), section 9.3 (CDR Transfer Syntax); [Extensible and Dynamic Types for DDS Specification](https://www.omg.org/spec/DDS-XTypes/1.3/PDF)                 | [![](https://shields.io/npm/v/@foxglove/omgidl-serialization)](https://www.npmjs.com/package/@foxglove/omgidl-serialization) |\n| `@foxglove/ros2idl-parser`       | Parse the ROS 2 dialect of IDL – [README](./packages/ros2idl-parser/README.md)                    | [article](https://design.ros2.org/articles/idl_interface_definition.html), [repo](https://github.com/ros2/rosidl) | [![](https://shields.io/npm/v/@foxglove/ros2idl-parser)](https://www.npmjs.com/package/@foxglove/ros2idl-parser)             |\n\nSee known limitations here:\n[Parser/Grammar Limitations](./packages/omgidl-parser/README.md#omg-idl-subset-support)\n[Serialization Limitations](./packages/omgidl-serialization/README.md#known-limitations)\n\n## Setup\n\n```\ncorepack enable\nyarn install\n```\n\n## Test\n\nIf it's your first time building, you'll need to run `yarn build`.\n\nThen to run test cases across all packages run `yarn test` from the root directory.\n\nNote: to ensure that tests from a downstream in-repo dependency are running against the latest upstream version of code, you'll have to run `yarn build` every time you change the upstream dependency.\n\nThe dependency flow is as follows:\n\n- `@foxglove/omgidl-serialization` depends on `@foxglove/omgidl-parser`\n- `@foxglove/ros2idl-parser` depends on `@foxglove/omgidl-parser`\n\n## Deploy packages\n\n1. Open a PR updating the version of the packages that have new versions that need to be deployed.\n2. Land PR with change of version numbers and pull the latest on main locally\n3. Add git tags for each package you'd like to publish using the following prefixes\n   - `@foxglove/omgidl-parser` -\u003e `omgidl-parser/vX.X.X`\n   - `@foxglove/omgidl-serialization` -\u003e `omgidl-serialization/vX.X.X`\n   - `@foxglove/ros2idl-parser` -\u003e `ros2idl-parser/vX.X.X`\n4. For example: if you're updating `@foxglove/omgidl-parser` to `v1.2.1` you would add the corresponding git tag by running `git tag omgidl-parser/v1.2.1`. For updating multiple packages on a single commit you can add multiple tags: `git tag omgidl-parser/v1.2.1 omgidl-serialization/v1.1.3` .\n5. After adding the tag run `git push origin refs/tags/\u003ctag\u003e` to push the specific tag to the remote\n\n## Stay in touch\n\nJoin our [Slack channel](https://foxglove.dev/slack) to ask questions, share feedback, and stay up to date on what our team is working on.\n\n## License\n\nfoxglove/omgidl and its packages are licensed under the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxglove%2Fomgidl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffoxglove%2Fomgidl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffoxglove%2Fomgidl/lists"}