{"id":27885866,"url":"https://github.com/thatopen/engine_components","last_synced_at":"2026-01-27T22:26:14.708Z","repository":{"id":49785162,"uuid":"509419736","full_name":"ThatOpen/engine_components","owner":"ThatOpen","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-15T12:37:50.000Z","size":205156,"stargazers_count":582,"open_issues_count":15,"forks_count":185,"subscribers_count":15,"default_branch":"main","last_synced_at":"2026-01-15T16:21:30.143Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ThatOpen.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-01T10:52:00.000Z","updated_at":"2026-01-15T12:37:55.000Z","dependencies_parsed_at":"2026-01-01T03:01:25.070Z","dependency_job_id":null,"html_url":"https://github.com/ThatOpen/engine_components","commit_stats":{"total_commits":1199,"total_committers":28,"mean_commits":42.82142857142857,"dds":"0.31109257714762306","last_synced_commit":"46ee63e17253c9b1501ce47391164a101ed0e862"},"previous_names":["thatopen/engine_components","ifcjs/components"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/ThatOpen/engine_components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatOpen%2Fengine_components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatOpen%2Fengine_components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatOpen%2Fengine_components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatOpen%2Fengine_components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ThatOpen","download_url":"https://codeload.github.com/ThatOpen/engine_components/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ThatOpen%2Fengine_components/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28662727,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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":[],"created_at":"2025-05-05T07:48:10.263Z","updated_at":"2026-01-22T12:01:37.506Z","avatar_url":"https://github.com/ThatOpen.png","language":"TypeScript","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://thatopen.com/\"\u003eTOC\u003c/a\u003e\n  |\n  \u003ca href=\"https://docs.thatopen.com/intro\"\u003edocumentation\u003c/a\u003e\n  |\n  \u003ca href=\"https://thatopen.github.io/engine_components/examples/IfcLoader/index.html\"\u003edemo\u003c/a\u003e\n  |\n  \u003ca href=\"https://people.thatopen.com/\"\u003ecommunity\u003c/a\u003e\n  |\n  \u003ca href=\"https://www.npmjs.com/org/thatopen\"\u003enpm package\u003c/a\u003e\n\u003c/p\u003e\n\n![cover](https://thatopen.github.io/engine_components/resources/cover.png)\n\n\u003ch1\u003eOpen BIM Components \u003cimg src=\"https://thatopen.github.io/engine_components/resources/favicon.ico\" width=\"32\"/\u003e\u003c/h1\u003e\n\n[![Components NPM Package][npm]][npm-url]\n[![Components NPM Package][npm-downloads]][npm-url]\n[![Components Front NPM Package][npm-front]][npm-url-front]\n[![Components Front NPM Package][npm-downloads-front]][npm-url-front]\n\nThis library is a collection of BIM tools based on [Three.js](https://github.com/mrdoob/three.js/) and other libraries. It includes pre-made features to easily build browser-based 3D BIM applications, such as postproduction, dimensions, floorplan navigation, DXF export and much more. \n\n\n## 🤝 Want our help?\nAre you developing a project with our technology and would like our help?\nApply now to join [That Open Accelerator Program](https://thatopen.com/accelerator)!\n\n## Packages\n\nThis library contains 2 packages:\n\n`@thatopen/components` - The core functionality. Compatible both with browser and Node.js environments.\n\n`@thatopen/components-front` - Features exclusive for browser environments.\n\n## Usage\n\nYou need to be familiar with [Three.js API](https://github.com/mrdoob/three.js/) to be able to use this library effectively. In the following example, we will create a cube in a 3D scene that can be navigated with the mouse or touch events. You can see the full example [here](https://github.com/ThatOpen/engine_components/blob/main/packages/core/src/core/Worlds/example.ts) and the deployed app [here](https://thatopen.github.io/engine_components/examples/Worlds/index.html).\n\n```js\n/* eslint import/no-extraneous-dependencies: 0 */\n\nimport * as THREE from \"three\";\nimport * as OBC from \"../..\";\n\nconst container = document.getElementById(\"container\")!;\n\nconst components = new OBC.Components();\n\nconst worlds = components.get(OBC.Worlds);\n\nconst world = worlds.create\u003c\n  OBC.SimpleScene,\n  OBC.SimpleCamera,\n  OBC.SimpleRenderer\n\u003e();\n\nworld.scene = new OBC.SimpleScene(components);\nworld.renderer = new OBC.SimpleRenderer(components, container);\nworld.camera = new OBC.SimpleCamera(components);\n\ncomponents.init();\n\nconst material = new THREE.MeshLambertMaterial({ color: \"#6528D7\" });\nconst geometry = new THREE.BoxGeometry();\nconst cube = new THREE.Mesh(geometry, material);\nworld.scene.three.add(cube);\n\nworld.scene.setup();\n\nworld.camera.controls.setLookAt(3, 3, 3, 0, 0, 0);\n```\n\n\n[npm]: https://img.shields.io/npm/v/@thatopen/components\n[npm-url]: https://www.npmjs.com/package/@thatopen/components\n[npm-downloads]: https://img.shields.io/npm/dw/@thatopen/components\n[npm-front]: https://img.shields.io/npm/v/@thatopen/components-front\n[npm-url-front]: https://www.npmjs.com/package/@thatopen/components-front\n[npm-downloads-front]: https://img.shields.io/npm/dw/@thatopen/components-front\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatopen%2Fengine_components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthatopen%2Fengine_components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthatopen%2Fengine_components/lists"}