{"id":15146621,"url":"https://github.com/annavitali/framework-collaborativexr","last_synced_at":"2026-02-11T21:33:41.830Z","repository":{"id":174994968,"uuid":"649069952","full_name":"AnnaVitali/framework-collaborativeXR","owner":"AnnaVitali","description":"This repository contains an experimental framework for the realization of shared experiences in eXtended Reality.","archived":false,"fork":false,"pushed_at":"2023-08-31T13:56:13.000Z","size":297936,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-01T22:41:16.463Z","etag":null,"topics":["augmented-reality","collaboration","extended-reality","mixed-reality","virtual-reality","webxr"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/AnnaVitali.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}},"created_at":"2023-06-03T17:16:23.000Z","updated_at":"2023-07-24T09:09:47.000Z","dependencies_parsed_at":null,"dependency_job_id":"c715911d-ccaf-4eb2-8fd5-2bad348d7167","html_url":"https://github.com/AnnaVitali/framework-collaborativeXR","commit_stats":{"total_commits":92,"total_committers":2,"mean_commits":46.0,"dds":0.05434782608695654,"last_synced_commit":"4e6a74b9a55b7ebdbbac27f70bdf980cf1282707"},"previous_names":["annavitali/framework-collaborativexr"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/AnnaVitali/framework-collaborativeXR","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnnaVitali%2Fframework-collaborativeXR","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnnaVitali%2Fframework-collaborativeXR/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnnaVitali%2Fframework-collaborativeXR/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnnaVitali%2Fframework-collaborativeXR/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AnnaVitali","download_url":"https://codeload.github.com/AnnaVitali/framework-collaborativeXR/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AnnaVitali%2Fframework-collaborativeXR/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274754353,"owners_count":25342997,"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-09-12T02:00:09.324Z","response_time":60,"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":["augmented-reality","collaboration","extended-reality","mixed-reality","virtual-reality","webxr"],"created_at":"2024-09-26T12:03:20.228Z","updated_at":"2026-02-11T21:33:41.576Z","avatar_url":"https://github.com/AnnaVitali.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CollaborativeXR - Framework\n\nThis repository contains an experimental framework for the realization of shared experiences in eXtended Reality.\n\n## Dependencies\n\nThe dependencies that the framework presents are reported in the following table.\n\n| Technology      | Dependency |\n|-----------------|-|\n| Croquet.os      | https://cdn.jsdelivr.net/npm/@croquet/croquet@1.0.5 |\n| Babylon.js      | https://cdn.babylonjs.com/babylon.js                |\n| Babylon.gui     | https://preview.babylonjs.com/gui/babylon.gui.min.js      |\n| Babylon.loaders | https://cdn.babylonjs.com/loaders/babylonjs.loaders.min.js|\n|                 |                                                           |\n\n## Application template\n\nMoving to the branch [_applicationTemplate_](https://github.com/AnnaVitali/framework-collaborativeXR/tree/applicationTemplate) inside the `src/html/template.html` file there is an initial template by which you can start to write your applications. The main part is reported below.\n\n1. Get an _apiKey_ and an _appId_ through the portal of Croquet (https://croquet.io/account/)\n2. Start a session\n3. Initialize the scene\n4. Create and define the elements properties you want within the scene\n5. Activate the render loop\n\n```javascript\n        import * as CollaborativeXR from \"../../collaborativeXR.min.js\"\n\n        const apiKey =  'yourApiKey';\n        const appId = 'yourAppId';\n        \n        const sessionManager = new CollaborativeXR.SessionManager();\n        await sessionManager.startSession(apiKey, appId);\n        const scene = new CollaborativeXR.Scene(sessionManager);\n        scene.initializeScene();\n        \n        //here the code of your application\n        \n        scene.activateRenderLoop();\n```\n\n## Example\n\nMoving on the [_example_](https://github.com/AnnaVitali/framework-collaborativeXR/tree/example) branch, you will have the opportunity to see some application examples made through the framework.\n\n### Simple Animation\n\nInside the file `src/html/example_animation.html`, you can find out how to create simple holograms and associate them with an animation that is started and stopped via a menu.\n\n![Alt Text](gif/animation.gif)\n\n### Hologram Manipulation\n\nInside the file `src/html/example_robot.html` you can find out how to import holograms defined by a file in `.gltf` format, and how to associate to them a manipulator menu that allows you to move and scale them.\n\n![Alt Text](gif/robot.gif)\n\n### Simple Application\n\nInside the file `src/html/example_animal.html` you can find out how to make a simple application consisting of both imported holograms and simple holograms, allow their manipulation, and create GUI for user interaction.\n\n![Alt Text](gif/animal.gif)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fannavitali%2Fframework-collaborativexr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fannavitali%2Fframework-collaborativexr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fannavitali%2Fframework-collaborativexr/lists"}