neko-mq v1.0.3
š NekoMQ Message Queue Framework
Message Queue at home
NekoMQ is a lightweight and flexible Message Queue framework designed to connect seamlessly with a wide range of databases. Whether you're using PostgreSQL, MySQL, MongoDB, SQLite, Redis, or other storage systems, NekoMQ ensures reliable message delivery and smooth integration.
This project is built as a Node.js library, making it easy to integrate into modern JavaScript/TypeScript applications.
⨠Features
- š¦ Database-Agnostic: Supports popular databases like PostgreSQL, MySQL, MongoDB, SQLite, Redis, and more.
- ā” Lightweight & Fast: Minimal overhead for high performance in any environment.
- š Flexible Integration: Easy to set up and configure in Node.js applications.
- š Message Reliability: Ensures message delivery and ordering across systems.
- š§ Open Source: Designed for the community with a focus on transparency and collaboration.
š Getting Started
npm install neko-mq
Basic Usage:
const NekoMQ = require("neko-mq");
const queue = new NekoMQ({
database: "postgresql", // Choose your DB (mysql, mongodb, redis, etc.)
connectionString: "your-database-connection-string",
});
queue.send("my-queue", { message: "Hello from NekoMQ!" });
š Documentation Explore the full documentation to learn more about setup, configuration, and advanced features.
My Open Source Message Queue System
Welcome to the Message Queue System! This open-source project
FOR CONTRIBUTOR
We are going to create Message Queue library base on PostGreSQL, MongoDB, MySQL and others database.
Now we just start Repository and find idea to make it happen, If you have some idea you can discussion with us on Github Issues in this repo.
Thank you.
Milestone
- Milestone 1: PostgreSQL Support