Package Information
Released: 10/22/2025
Downloads: 32 weekly / 69 monthly
Latest Version: 1.0.9
Author: Mahdi Zojaji
Documentation
n8n-nodes-haio-messenger-collector
A collection of n8n nodes for connecting and managing messenger services like Telegram and Bale.
Installation
npm install n8n-nodes-haio-messenger-collector
## Configuration
Add this to your n8n configuration:
bash
export N8N_CUSTOM_EXTENSIONS="/path/to/node_modules/n8n-nodes-haio-messenger-collector"
Or in your `n8n` config file:
json
{
"nodes": {
"include": ["n8n-nodes-haio-messenger-collector"]
}
}
## Nodes Included
### Messenger Collector
Collects and displays information about connected messenger services.
### Telegram Connection
Simulates a connection to Telegram Bot API.
### Bale Connection
Simulates a connection to Bale messaging service.
## Usage
1. Add messenger connection nodes (Telegram/Bale) to your workflow
2. Connect them to the Messenger Collector node
3. Execute the workflow to see connected services
## License
MIT
### `LICENSE`
MIT License
Copyright (c) 2025 Your Name
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
### `dist/index.js` (اختیاری)
```javascript
// Export all nodes
module.exports = {
nodes: [
require('./nodes/MessengerCollector/MessengerCollector.node.js'),
require('./nodes/MessengerCollector/TelegramConnection.node.js'),
require('./nodes/MessengerCollector/BaleConnection.node.js')
]
};