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

@littlecarlito/blorktools

v0.52.2

Published

Development tools for 3D assets and debugging

Readme

BlorkTools

Advanced development and debugging toolkit for Three.js applications. This package provides a comprehensive suite of tools for visualizing, debugging, and analyzing 3D applications built with Three.js.

Performance Improvement

  • New Debug Render System: Improved visualization with lower performance impact
  • Memory Usage Tracker: Better memory tracking and optimization suggestions

Key Features

  • Asset Debugger: Visualize and debug 3D assets with a powerful UI
  • Rig Debugger: Debug animation rigs and skeletal animations
  • Performance Tools: Monitor and optimize rendering performance

Installation

npm install @littlecarlito/blorktools

Usage

import { 
  AssetDebugger,
  RigDebugger, 
  SceneAnalyzer 
} from '@littlecarlito/blorktools';

// Initialize the debugger
const debugger = AssetDebugger.initialize(scene, renderer);

// Enable debugging features
debugger.enableWireframes();
debugger.enableBoundingBoxes();
debugger.enablePerformanceMetrics();

// Analyze scene
const analysis = SceneAnalyzer.analyzeScene(scene);
console.log(analysis.statistics);

Architecture

The codebase follows a modular architecture for better maintainability and extensibility:

Core Modules

  • index.js - Application entry point and state management
  • scene.js - Three.js scene and rendering setup
  • loader.js - Model and texture loading
  • analyzer.js - Model structure analysis and UV handling

UI Modules

  • debugPanel.js - Information panel and controls
  • textureEditor.js - Texture editor with multi-texture support
  • atlasVisualization.js - UV mapping visualization
  • dragdrop.js - Drag and drop interface for file uploading

Material Modules

  • textureManager.js - Texture loading and application
  • multiTextureMaterial.js - Custom shader-based material for blending multiple textures

Utility Modules

  • helpers.js - Common utility functions
  • events.js - Event listeners and keyboard shortcuts

Development

Within the monorepo, you can build and test the package using Turborepo:

# Build only blorktools
pnpm turbo run build --filter=@littlecarlito/blorktools

# Run tests
pnpm turbo run test --filter=@littlecarlito/blorktools

# Start in development mode with hot reloading
pnpm turbo run dev --filter=@littlecarlito/blorktools

Extensions

Blorktools supports custom extensions and plugins:

import { registerPlugin } from '@littlecarlito/blorktools';

// Create custom plugin
const myPlugin = {
  name: 'AI-OptimizationSuggester',
  version: '1.0.0',
  initialize(context) {
    // Setup plugin with context
    this.api = context.api;
    this.scene = context.scene;
    
    // Register custom UI panel
    this.api.registerPanel('AI Suggestions', this.renderPanel.bind(this));
  },
  renderPanel(container) {
    // Create UI elements
    const button = document.createElement('button');
    button.textContent = 'Analyze Scene';
    button.onclick = this.analyzeScene.bind(this);
    container.appendChild(button);
  },
  analyzeScene() {
    // Custom analysis logic
    const suggestions = this.runAnalysis(this.scene);
    this.api.showResults(suggestions);
  },
  runAnalysis(scene) {
    // AI-based scene analysis
    return ['Suggestion 1', 'Suggestion 2'];
  }
};

// Register plugin
registerPlugin(myPlugin);

Browser Support

| Browser | Support Level | Notes | |---------|--------------|-------| | Chrome | Full | Best experience with DevTools integration | | Firefox | Full | WebGL Inspector integration available | | Safari | Full | Performance may vary | | Edge | Full | Same as Chrome | | iOS | Limited | Basic functionality only | | Android | Limited | Basic functionality only |

Dependencies

  • Three.js (^0.172.0)
  • Express (^4.18.3)
  • Vite (for development server)
  • dat.GUI (for control interfaces)
  • gl-matrix (for math operations)

Contributing

This package is part of the threejs_site monorepo. Please refer to the main repository for contribution guidelines.

License

This package is licensed under the GNU General Public License v3.0 (GPL-3.0).

See the root LICENSE file for full terms and conditions.