{"id":28249281,"url":"https://github.com/gitchaell/ngx-profile-avatar","last_synced_at":"2026-03-12T14:39:07.239Z","repository":{"id":44365381,"uuid":"511698182","full_name":"gitchaell/ngx-profile-avatar","owner":"gitchaell","description":"Interactive 3D Avatar Profile Viewer generated in Ready Player Me","archived":false,"fork":false,"pushed_at":"2022-08-27T21:17:49.000Z","size":46208,"stargazers_count":10,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-24T09:17:15.085Z","etag":null,"topics":["3d-models","angular","avatar","avatars","component-library","profile","ready-player-me","threejs"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@michaelldev/ngx-profile-avatar","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/gitchaell.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}},"created_at":"2022-07-07T23:06:29.000Z","updated_at":"2025-03-25T01:11:24.000Z","dependencies_parsed_at":"2022-09-26T16:20:18.525Z","dependency_job_id":null,"html_url":"https://github.com/gitchaell/ngx-profile-avatar","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/gitchaell/ngx-profile-avatar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitchaell%2Fngx-profile-avatar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitchaell%2Fngx-profile-avatar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitchaell%2Fngx-profile-avatar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitchaell%2Fngx-profile-avatar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gitchaell","download_url":"https://codeload.github.com/gitchaell/ngx-profile-avatar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gitchaell%2Fngx-profile-avatar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30428504,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["3d-models","angular","avatar","avatars","component-library","profile","ready-player-me","threejs"],"created_at":"2025-05-19T13:14:33.325Z","updated_at":"2026-03-12T14:39:07.224Z","avatar_url":"https://github.com/gitchaell.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://gitchaell.github.io/ngx-profile-avatar\"\u003e\n    \u003cimg src=\".github/images/logo.png\" width=\"192px\" height=\"192px\"/\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n  Ngx Profile Avatar\n\u003c/h1\u003e\n\n\u003ch4 align=\"center\"\u003e\n  Interactive 3D Avatar Profile Viewer generated in Ready Player Me\n\u003c/h4\u003e\n\n## Demo\n\n- You can see a live demo [here](https://gitchaell.github.io/ngx-profile-avatar)\n\n### Cursor Tracker\n\n\u003e The rotation of the model, head, eyes and neck will react to the movement of the cursor.\n\n![Cursor Tracker Demo](.github/demos/cursor-tracker.demo.gif)\n\n### Face Tracker\n\n\u003e Model rotation, head, neck and facial animations will react to your expressions and movements detected by the camera.\n\n![Face Tracker Demo](.github/demos/face-tracker.demo.gif)\n\n## Generate your 3D Avatar\n\n1. Navigate to the following url: [vr.readyplayer.me/avatar](https://vr.readyplayer.me/avatar).\n1. Customize the look of your 3D avatar.\n1. When finished, copy the generated link to the file with extension `.glb` or download the file and add it to the `assets` folder of your project in `Angular`.\n\n![Avatar 3D Generator](.github/images/avatar-3d-generator.png)\n\n## Install NgxProfileAvatar\n\n1. Install the library in your project with the command: `npm install @michaelldev/ngx-profile-avatar`.\n1. Import `NgxProfileAvatarModule` in your `app.module`.\n\n```typescript\nimport { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { AppComponent } from './app.component';\n\nimport { NgxProfileAvatarModule } from '@michaelldev/ngx-profile-avatar';\n\n@NgModule({\n  declarations: [AppComponent],\n  imports: [\n    BrowserModule,\n    AppRoutingModule,\n    //...\n    NgxProfileAvatarModule,\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\n\n1. Use the `ngx-profile-avatar` component as the example below:\n\n```html\n\u003cngx-profile-avatar \n    [url]=\"url\" \n    [tracker]=\"tracker\" \n    [enableRotate]=\"true\" \n    [enableZoom]=\"true\" \n    (loading)=\"onLoadingAvatar($event)\" \n    style=\"position: fixed;inset: 0;width: 50%;height: 100%;\"\u003e\n\u003c/ngx-profile-avatar\u003e\n```\n\n```typescript\nimport { Tracker } from '@michaelldev/ngx-profile-avatar/lib';\n\n@Component({\n  selector: 'app-root',\n  templateUrl: './app.component.html',\n})\nexport class AppComponent {\n\n  url: string = 'assets/avatar.glb';\n  tracker: Tracker = 'cursor';\n\n}\n```\n\n1. Component documentation\n\n| Input         | Description | Type | Default |\n|:--------------|:------------|:-----|:--------|\n| `[url]` | Public or local location of the `.glb` file containing the 3d model of your avatar. | `string` | `null` |\n| `[tracker]` | Reaction method of your model.| `'cursor' 'face'` | `'cursor'` |\n| `[enableRotate]` | Enable mouse interaction to rotate the model.| `boolean` | `true'` |\n| `[enableZoom]` | Enables mouse interaction to zoom in and out of the model.| `boolean` | `true` |\n| `(loading)` | Emitter of `.glb` file loading progress event or of the Facial Tracker initialization progress event.| `EventEmitter\u003cProgressEvent\u003e` | `-` |\n\n\u003e **Important**\n\u003e\n\u003e Preferably, define tracker as `cursor` . The `face` option is still experimental.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitchaell%2Fngx-profile-avatar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgitchaell%2Fngx-profile-avatar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgitchaell%2Fngx-profile-avatar/lists"}