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

blender-kit

v1.0.1779962859

Published

Agentic Blender 4.x development boilerplate - Python REPL/CLI, HTTP bridge, scene inspector, headless rendering

Readme

blender-kit

Agentic Blender 4.x development boilerplate — Python REPL/CLI, HTTP bridge, scene inspector, headless rendering.

Install

npx blender-kit <project-dir>
cd <project-dir>

This scaffolds a new project and installs the blender-dev CLI.

Requirements

  • Node.js 18+
  • Blender 4.x (download)
  • Python + pip (for lint/format tools)

Configuration

blender-dev config set blenderPath /path/to/blender
blender-dev config get
blender-dev config path
blender-dev download-engine   # show download instructions

Config is stored at ~/.blender-kit/config.json.

CLI Commands

Headless (no Blender open required)

| Command | Description | |---------|-------------| | blender-dev run [script] | Run a Python script headlessly (default: scripts/main.py) | | blender-dev render [script] | Run render script headlessly (default: scripts/render.py) | | blender-dev setup | Install flake8 and black via pip | | blender-dev lint [files...] | Lint Python files with flake8 | | blender-dev format [files...] | Format Python files with black | | blender-dev download-engine | Show Blender 4.3 download instructions |

Live Bridge (requires Blender open + blender_bridge addon enabled)

The bridge runs an HTTP server on port 6009 inside Blender.

| Command | Description | |---------|-------------| | blender-dev repl | Interactive Python REPL against running Blender | | blender-dev eval <expr> | Evaluate a Python/bpy expression | | blender-dev info | Show Blender version, scene name, object count | | blender-dev scene | Dump active scene tree | | blender-dev objects | List all objects with name/type/location | | blender-dev set <path> <prop> <value> | Set an object property | | blender-dev select <name> | Select object by name | | blender-dev call <path> <method> [args] | Call a bpy method | | blender-dev render-settings | Show render engine, resolution, samples | | blender-dev reload | Reload the current .blend file | | blender-dev watch | Watch .py files and notify bridge on change |

REPL dot-commands

Inside blender-dev repl:

.objects          list scene objects
.scene            dump scene tree
.info             Blender version + scene info
.render-settings  render config
.help             show available dot-commands

Any other input is evaluated as a Python/bpy expression.

Project Structure (scaffolded)

<project>/
  scripts/
    main.py       # entry point for blender-dev run
    render.py     # entry point for blender-dev render
  addons/
    blender_bridge/
      __init__.py # HTTP bridge addon (port 6009)

Ports

| Port | Service | |------|---------| | 6009 | Blender HTTP bridge |

License

MIT