
Security News
gem.coop Tests Dependency Cooldowns as Package Ecosystems Move to Slow Down Attacks
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.
angular-three
Advanced tools
angular-threeA custom Renderer for Angular 20+ that uses Three.js to render 3D scenes.
All public APIs are documented with JSDoc comments. Your IDE will provide inline documentation, parameter hints, and examples as you code.
Please visit Angular Three Documentation
npm install -D angular-three-plugin
npx ng generate angular-three-plugin:init
SceneGraph component for your 3D scene graphimport { extend } from 'angular-three';
import { Mesh, BoxGeometry } from 'three';
extend({
Mesh, // makes ngt-mesh available
BoxGeometry, // makes ngt-box-geometry available
/* ... */
MyMesh: Mesh, // makes ngt-my-mesh available
});
// alternatively for demo purposes, you can use the following
// extend(THREE);
// This includes the entire THREE.js namespace
@Component({
selector: 'app-scene-graph',
template: `
<ngt-mesh>
<ngt-box-geometry />
</ngt-mesh>
`,
schemas: [CUSTOM_ELEMENTS_SCHEMA], // required
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SceneGraph {}
SceneGraph with NgtCanvasimport { NgtCanvas } from 'angular-three/dom';
import { SceneGraph } from './scene-graph';
@Component({
// This Component is rendered normally in Angular.
selector: 'app-my-experience',
template: `
<ngt-canvas>
<app-scene-graph *canvasContent />
</ngt-canvas>
`,
imports: [NgtCanvas],
})
export class MyExperience {}
The Component that renders
NgtCanvas(MyExperiencein this case) controls the dimensions of the canvas so make sure to style it accordingly.
bootstrapApplicationimport { provideNgtRenderer } from 'angular-three/dom';
bootstrapApplication(AppComponent, {
providers: [provideNgtRenderer()],
});
FAQs
Angular Renderer for THREE.js
The npm package angular-three receives a total of 517 weekly downloads. As such, angular-three popularity was classified as not popular.
We found that angular-three demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.

Security News
Following multiple malicious extension incidents, Open VSX outlines new safeguards designed to catch risky uploads earlier.

Research
/Security News
Threat actors compromised four oorzc Open VSX extensions with more than 22,000 downloads, pushing malicious versions that install a staged loader, evade Russian-locale systems, pull C2 from Solana memos, and steal macOS credentials and wallets.