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 🙏

© 2025 – Pkg Stats / Ryan Hefner

wranglebot

v7.5.0

Published

open source media asset management

Downloads

134

Readme

wranglebot-logo

WrangleBot - Media Asset Management Platform

GitHub last commit GitHub package.json version GitHub repo size Platforms Discord


WrangleBot is an open source media asset management platform engine.

🧰 Features

WrangleBot offers a variety of features to make asset management easier and more efficient:

  • Ingest: Copy & Verify
    • ingest entire volumes or individual folders to your media libraries
    • auto scan, extract meta data, generate unique hash using xxHash algorithms
    • extract thumbnails from video footage for cloud preview
  • Manage Metadata
    • edit and view metadata in advanced meta data editor
    • extract and scrub through thumbnails
  • Library Management
    • create bins to manage media into categories and tags
    • import new files from "watched" bins
    • app automatically relocates and connects to storage devices
  • Export and Transcode
    • transcode media to ProRes, H264 and DNxHD up to 4K
    • export with LUTs
  • Open Source
    • open NodeJS engine and browser client
    • written in NodeJS with Typescript
    • Javascript API, that uses chained commands and is easy to use without knowledge of the underlying code
    • fully controllable via REST API
    • currently supports both Intel x64 and AMD64, as well as Apple Silicon

👋 Getting Started

To build WrangleBot, you will need to have Node.js installed on your computer.

📦 Install

npm install wranglebot

Then, run npm install to install all the dependencies. After that, run npm run build to build the application. Finally, run npm run test to start the application.

🚀 Booting up Instance

wranglebot.open({
  app_data_location: "<APP_DATA_LOCATION>",
  vault: {
    token: "<LOCAL_DATABASE_TOKEN>"
  },
  port: 3200,
  //optional
  mail: {
    host: "<SMTP_HOST>",
    port: "<SMTP_PORT>",
    auth: {
      user: "<SMTP_USER>",
      pass: "<SMTP_PASS>",
    },
  },
})

📑 REST API Documentation

(Postman) REST API with Examples

📑 NodeJS Documentation

(GitBook) NodeJS API & Model Documentation

💬 Discord

Join our Discord for live support.

👥 Contributing

We welcome contributions to WrangleBot! Please join us on our Discord to discuss how you can help. We are always looking for new contributors to help us build the best media asset management tool possible and want to make it as easy as possible for you to get involved.

🛠 NPM Scripts and Testing

Build

npm run build

Running Test Environment

Build the application and run the test environment:

⚠️ You will require a .env to run the test environment:

APP_DATA_LOCATION="<YOUR_APP_DATA_LOCATION>" // choose your app data location, i.e. "/Users/username/.wranglebot"
LOCAL_DATABASE_TOKEN="<YOUR_DATABASE>" // choose your database token to connect to the database, i.e. "my_database"

DEBUG_NOTIFICATIONS="false" #show notifications in console (true/false)

SMTP_HOST="<YOUR_EMAIL_HOST>"
SMTP_PORT="<YOUR_EMAIL_SMTP_PORT>" # 465 for SSL, 587 for TLS
SMTP_USER="<YOUR_EMAIL_USERNAME>"
SMTP_PASS="<YOUR_EMAIL_PASS>"
npm run test

📜 License

WrangleBot is released under the GPL-3.0 License. For more information, please view the license. You must publish all changes and modifications to the source code under the same license. We encourage you to contribute to the project and make it better for everyone.