whatsmiau

command module
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 21, 2026 License: GPL-3.0 Imports: 13 Imported by: 0

README

WhatsMiau

logo-whatsmiau

WhatsMiau is a backend service for WhatsApp, built with Go. It uses the Whatsmeow library to connect to WhatsApp and provides an HTTP API to send and receive messages.

Community Whatsapp (BR)

About The Project

This project provides a robust, scalable, and production-ready solution for integrating WhatsApp functionalities into your applications. It is extremely lightweight, consuming very little memory, making it ideal for resource-constrained environments.

It's designed to be compatible with the Evolution API, making it a flexible choice for developers familiar with that ecosystem.

Features

  • Lightweight & Efficient: Optimized for low memory consumption.
  • Production Ready: Stable and reliable for use in production environments.
  • WhatsApp Integration: Connects to WhatsApp to send and receive messages.
  • HTTP API: Exposes an HTTP API for easy integration with other services.
  • Redis Support: Uses Redis for session storage and caching.
  • SQLite Database: Utilizes SQLite for persistent data storage.
  • Environment-based Configuration: Easily configure the application using environment variables.
  • Structured Logging: Implements structured logging with Zap for better monitoring and debugging.

Getting Started

To get a local copy up and running follow these simple steps.

Prerequisites
  • Go 1.24 or higher
  • Redis
  • SQLite
Installation
  1. Clone the repo
    git clone https://github.com/verbeux-ai/whatsmiau.git
    
  2. Install Go packages
    go mod tidy
    
  3. Set up your environment variables by copying .env.example to .env and filling in the required values.
    cp .env.example .env
    
  4. Run the application
    go run main.go
    

Running with Docker

You can also run the application using Docker and Docker Compose.

  1. Build and run the containers:
    docker-compose up -d --build
    
  2. View the logs:
    docker-compose logs -f
    
  3. Stop the containers:
    docker-compose down
    

Docker Image

Official Docker images are available on Docker Hub.

  • Latest stable release: impedr029/whatsmiau:vX.Y.Z (see versions)
  • Development version: impedr029/whatsmiau:develop

You can pull the latest stable image with (example):

docker pull impedr029/whatsmiau:vX.Y.Z

Or the development image with:

docker pull impedr029/whatsmiau:develop

Configuration

The application is configured using environment variables. The following variables are available:

Variable Description Default
PORT The port the server will run on. 8080
DEBUG_MODE Enable or disable debug mode. false
DEBUG_WHATSMEOW Enable or disable debug mode for Whatsmeow. false
REDIS_URL The URL of the Redis server. localhost:6379
REDIS_PASSWORD The password for the Redis server. ``
REDIS_TLS Enable or disable TLS for Redis. false
API_KEY The API key to protect the service. ``
DIALECT_DB The database dialect to use (sqlite3 or postgres). sqlite3
DB_URL The database connection URL. file:data.db?_foreign_keys=on
GCS_ENABLED Enable or disable Google Cloud Storage. false
GCS_BUCKET The GCS bucket name. whatsmiau
GCS_URL The GCS URL. https://storage.googleapis.com
GCL_APP_NAME The GCL application name. whatsmiau-br-1
GCL_ENABLED Enable or disable Google Cloud Logging. false
GCL_PROJECT_ID The GCL project ID. ``
EMITTER_BUFFER_SIZE The emitter buffer size. 2048
HANDLER_SEMAPH-ORE_SIZE The handler semaphore size. 512
PROXY_ADDRESSES A comma-separated list of proxy addresses. Example: SOCKS5://user:pass@host:port,HTTP://host:port ``
PROXY_STRATEGY The strategy to use when selecting a proxy from the list (RANDOM). RANDOM
PROXY_NO_MEDIA If set to true, media will not be sent through the proxy. false

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Compatibility

This API is designed to be compatible with the Evolution API. This means that you can use clients and tools designed for the Evolution API with this project.

It exclusively supports webhooks in the Evolution API format, offering two distinct approaches for their implementation, providing flexibility for different use cases.

Migration from Evolution API

WhatsMiau is designed to be a lightweight, drop-in replacement for the Evolution API. If you are running WhatsMiau on the same host and port as your previous Evolution API instance, migration is seamless.

Since WhatsMiau maintains compatibility with the Evolution API's routes, you only need to stop your Evolution API server and start the WhatsMiau server. No changes to your existing API calls are necessary.

Example

For instance, if you were sending a text message using a curl command to an Evolution API server running on localhost:8080, the exact same command will work with WhatsMiau.

Before (Evolution API):

curl -X POST 'http://localhost:8080/message/sendText/my-instance' \
-H 'Content-Type: application/json' \
-H 'apikey: YOUR_API_KEY' \
-d ".{\"number\": \"1234567890\",\"textMessage\": {\"text\": \"Hello from Evolution API!\"}}"

After (WhatsMiau):

Simply point your application to the WhatsMiau server URL. The same request will be handled by WhatsMiau:

curl -X POST 'http://localhost:8080/v1/message/sendText/my-instance' \
-H 'Content-Type: application/json' \
-H 'apikey: YOUR_API_KEY' \
-d ".{\"number\": \"1234567890\",\"textMessage\": {\"text\": \"Hello from WhatsMiau!\"}}"

API Documentation

The API is fully documented using Swagger/OpenAPI. Once the server is running, you can access the interactive documentation at:

http://localhost:8080/swagger/index.html

No API key is required to access the documentation page.

The Swagger UI allows you to explore all available routes, view request/response schemas, and test the API directly from your browser.

Supported Events

The application can send webhook events for the following actions:

Event Description
MESSAGES_UPSERT Triggered when a new message is received.
MESSAGES_UPDATE Triggered when a message status changes (e.g., read).
CONTACTS_UPSERT Triggered when a contact is created or updated.

Contributors

Did you like project?

Donate: https://buy.stripe.com/8x28wI5vKfPbe9b8ih1VK0f

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package docs Code generated by swaggo/swag.
Package docs Code generated by swaggo/swag.
lib
repositories
server
dto

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL