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

hexabot-helper-minio

v2.2.2

Published

The Minio Hexabot Helper Extension for Hexabot to store for attachment files

Readme

Hexabot MINIO Helper

Hexabot MINIO Helper is an extension that integrates MINIO storage for managing attachment files in your Hexabot project. This helper allows you to store, retrieve, and manage files efficiently using MINIO as the storage backend.

Hexabot is an open-source chatbot / agent solution that allows users to create and manage AI-powered, multi-channel, and multilingual chatbots with ease. If you would like to learn more, please visit the official github repo.

Features

  • Seamless integration with MINIO storage.
  • Configurable settings for MINIO endpoint, port, SSL usage, and authentication.
  • Option to set a default storage bucket.
  • Compatible with Hexabot's attachment file management system.

Settings Configuration

To configure the MINIO Helper, use the following settings in the Hexabot admin panel under Settings > Minio:

| Label | Default Value | Type | Description | |---------------|-------------------------|---------------|-------------------------------------------------| | endpoint | minio | Text | The endpoint for the MINIO server. | | port | 9000 | Text | The port for the MINIO server. | | use_ssl | false | Checkbox | Whether to use SSL for connections. | | access_key | <your-access-key> | Secret | The access key for MINIO authentication. | | secret_key | <your-secret-key> | Secret | The secret key for MINIO authentication. | | bucket | hexabot (default) | Text | The default bucket for storing attachments. |


Environment Setup

Set your environment variables in the ./docker/.env file. These variables will be utilized in the Docker Compose files when you run the project. Below is an example of the required environment variables:

MINIO_CONSOLE_PORT=9001
MINIO_ROOT_USER=minioadmin
MINIO_ROOT_PASSWORD=minioadmin
MINIO_DEFAULT_BUCKET_NAME=hexabot

Installation

First, navigate to your Hexabot project directory and make sure the dependencies are installed:

cd ~/projects/my-hexabot-project
npm install hexabot-helper-minio

Then follow these steps:

  1. Add the docker-compose.minio.yml and docker-compose.minio.dev.yml files under the docker/ folder.
  2. Start the MINIO service with the following command: hexabot dev --services minio
  3. Access the MINIO Console at http://localhost:9001.
  4. Create or update your API keys (access key and secret key) via the MINIO Console.
  5. Navigate to Settings > Minio in the admin panel and update the settings.
  6. Set the default storage helper: Navigate to Settings > Chatbot and update the Default Storage Helper to use minio-helper.

Docker compose files

Below an example of MINIO docker compose file docker/docker-compose.minio.yml:

version: "3.8"

services:
  api:
    networks:
      - minio-network
    depends_on:
      minio:
        condition: service_healthy

  minio:
    container_name: minio
    image: minio/minio:latest
    command: server /data --console-address ":${MINIO_CONSOLE_PORT}"
    environment:
      MINIO_ROOT_USER: ${MINIO_ROOT_USER}
      MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
    healthcheck:
      test:
        [
          "CMD",
          "mc",
          "ready",
          "local"
        ]
      interval: 30s
      timeout: 20s
      retries: 3
    volumes:
      - minio-data:/data
    networks:
      - minio-network

  minio-mc:
    image: minio/mc
    container_name: minio-mc
    depends_on:
      minio:
        condition: service_healthy
        restart: true
    entrypoint: >
      /bin/sh -c "
      /usr/bin/mc alias set minio http://minio:9000/ ${MINIO_ROOT_USER} ${MINIO_ROOT_PASSWORD} 
      && /usr/bin/mc mb --quiet minio/${MINIO_DEFAULT_BUCKET_NAME}
      "
    networks:
      - minio-network

volumes:
  minio-data:

networks:
  minio-network:

As well as the MINIO Console docker compose file docker/docker-compose.minio.dev.yml:

version: "3.8"

services:
  minio:
    ports:
      - "9005:9000"
      - "${MINIO_CONSOLE_PORT}:${MINIO_CONSOLE_PORT}"

Support

If you encounter any issues or have questions about using Hexabot MINIO Helper, feel free to contribute or open an issue on the Hexabot GitHub repository.

Feel free to join us on Discord