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

@sajjadsaharkhan/n8n-nodes-telegram-proxy

v1.0.0

Published

Telegram nodes with HTTP proxy support for n8n. An enhanced version of the official Telegram node.

Readme

n8n-nodes-telegram-proxy

Telegram nodes with HTTP proxy support for n8n

npm version License: MIT

An enhanced version of the official n8n Telegram node with HTTP/HTTPS/SOCKS proxy support.

Features

✅ All features from the official Telegram node ✅ HTTP/HTTPS/SOCKS proxy support ✅ Proxy authentication (username/password) ✅ Works with all Telegram operations ✅ Compatible with n8n 1.0+

Why This Package?

The official n8n Telegram node doesn't support proxy configuration. This fork adds proxy support while maintaining 100% compatibility with all existing Telegram features.

Installation

Option 1: Install from npm (Recommended)

In your n8n directory:

npm install @sajjadsaharkhan/n8n-nodes-telegram-proxy

Then restart n8n.

Option 2: Install globally (for Docker/Kubernetes)

npm install -g @sajjadsaharkhan/n8n-nodes-telegram-proxy

Option 2: Install from Source

git clone https://github.com/sajjadsaharkhan/n8n-nodes-telegram-proxy.git
cd n8n-nodes-telegram-proxy
npm install
npm run build
npm link
# In your n8n directory:
npm link @sajjadsaharkhan/n8n-nodes-telegram-proxy

Usage

Setting Up Proxy

  1. In n8n, create a new credential: Credentials → Telegram API (with Proxy)
  2. Fill in your Telegram Bot Token from @BotFather
  3. Expand the HTTP Proxy section
  4. Configure your proxy:
    • Host: Proxy server hostname or IP
    • Port: Proxy port (default: 3128)
    • Protocol: HTTP, HTTPS, or SOCKS
    • Authentication (optional): Username and password

Example Scenarios

Behind a Corporate Proxy

Host: proxy.company.com
Port: 8080
Protocol: HTTP
Username: your-username
Password: your-password

Using SOCKS Proxy

Host: 127.0.0.1
Port: 1080
Protocol: SOCKS

Using Telegram in Restricted Regions

Configure a proxy in a region where Telegram is accessible:

Host: your-vps-ip.com
Port: 3128
Protocol: HTTP

Available Nodes

  • Telegram (with Proxy) - Send messages, media, and interact with chats
  • Telegram Trigger (with Proxy) - Receive updates from Telegram

All operations from the official Telegram node are supported:

  • Send text messages, photos, videos, documents, audio, stickers
  • Edit and delete messages
  • Manage chats
  • Answer callback queries
  • And more...

Kubernetes/Docker Deployment

To use this package in a Docker/Kubernetes environment, build a custom n8n image:

FROM n8nio/n8n:latest

USER root
RUN npm install -g @sajjadsaharkhan/n8n-nodes-telegram-proxy
USER node

Or use the multi-stage build approach for smaller images. See KUBERNETES.md for details.

Development

# Clone the repository
git clone https://github.com/sajjadsaharkhan/n8n-nodes-telegram-proxy.git
cd n8n-nodes-telegram-proxy

# Install dependencies
npm install

# Build TypeScript
npm run build

# Watch for changes
npm run dev

Publishing

Automated Publishing via GitHub Actions

This repository uses GitHub Actions to automatically build and publish to npm when you push a version tag:

# Tag and push (triggers the workflow)
git tag v1.0.0
git push origin v1.0.0

Manual Publishing

  1. Set your npm token in GitHub Secrets as NPM_TOKEN
  2. Or publish locally:
npm run build
npm publish --access public

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT

Acknowledgments

Disclaimer

This is an unofficial community package. It is not affiliated with or endorsed by n8n or Telegram.


Made with ❤️ for the n8n community