npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

angular-three-plugin

v4.0.9

Published

Nx plugin for Angular Three providing generators and utilities for 3D application development.

Downloads

3,266

Readme

angular-three-plugin

Nx plugin for Angular Three providing generators and utilities for 3D application development.

Documentation

All public APIs are documented with JSDoc comments. Your IDE will provide inline documentation, parameter hints, and examples as you code.

Official Documentation

Please visit Angular Three Documentation

Installation

npm install -D angular-three-plugin
# yarn add -D angular-three-plugin
# pnpm add -D angular-three-plugin

Generators

init

Initializes Angular Three in your application. This generator:

  • Installs angular-three, three, @types/three, and ngxtension
  • Enables skipLibCheck in tsconfig for Three.js compatibility
  • Adds provideNgtRenderer() to your application providers
  • Optionally generates a starter SceneGraph component
nx g angular-three-plugin:init

Options:

| Option | Description | Default | | ------------ | ---------------------------------------- | ----------------- | | sceneGraph | How to generate the SceneGraph component | 'generate-only' |

SceneGraph options:

  • append - Append to parent component template
  • replace - Replace parent component template
  • generate-only - Generate component but don't modify template
  • none - Don't generate a SceneGraph component

aux

Adds auxiliary Angular Three packages to your project:

nx g angular-three-plugin:aux

Available packages:

  • angular-three-soba - Utilities and abstractions
  • angular-three-rapier - Rapier physics engine
  • angular-three-postprocessing - Post-processing effects
  • angular-three-cannon - Cannon.js physics engine
  • angular-three-tweakpane - Tweakpane UI controls
  • angular-three-theatre - Theatre.js animation toolkit

gltf

Generates an Angular component from a GLTF/GLB 3D model:

nx g angular-three-plugin:gltf --modelPath=src/assets/model.glb --output=src/app/model.ts

Options:

| Option | Description | Default | | ---------------- | --------------------------------------- | --------- | | modelPath | Path to GLTF/GLB model | Required | | output | Output path for generated component | Required | | className | Component class name | 'Model' | | selectorPrefix | Component selector prefix | 'app' | | draco | Use DracoLoader for compressed models | null | | shadows | Enable shadow casting/receiving | false | | transform | Transform meshes via gltf-transform | false | | instance | Instance re-occurring geometry | false | | bones | Layout bones declaratively | false | | console | Print output to console instead of file | false |