All Projects → FreedomPrevails → Jsmtproxy

FreedomPrevails / Jsmtproxy

Licence: mit
High Performance NodeJS MTProto Proxy

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Jsmtproxy

Telegram React
Experimental Telegram web client with tdlib, webassembly and react js under the hood
Stars: ✭ 1,332 (+424.41%)
Mutual labels:  telegram, mtproto
Madelineproto
Async PHP client/server API for the telegram MTProto protocol
Stars: ✭ 1,776 (+599.21%)
Mutual labels:  telegram, mtproto
Unigram
A Telegram desktop app made for Windows 10
Stars: ✭ 1,393 (+448.43%)
Mutual labels:  telegram, mtproto
Mtprotoproxy
Async MTProto proxy for Telegram
Stars: ✭ 1,014 (+299.21%)
Mutual labels:  telegram, mtproto
Mtproto Core
Telegram API JS (MTProto) client library for browser and nodejs
Stars: ✭ 242 (-4.72%)
Mutual labels:  telegram, mtproto
Callsmusic
The first open-source PyTgCalls-based project.
Stars: ✭ 62 (-75.59%)
Mutual labels:  telegram, mtproto
Novagram
An Object-Oriented PHP library for Telegram Bots
Stars: ✭ 112 (-55.91%)
Mutual labels:  telegram, mtproto
Mtproto
Full-native go implementation of Telegram API
Stars: ✭ 566 (+122.83%)
Mutual labels:  telegram, mtproto
Pyrogram
Telegram MTProto API Client Library and Framework in Pure Python for Users and Bots
Stars: ✭ 2,252 (+786.61%)
Mutual labels:  telegram, mtproto
Mtproto
Telegram MTProto and its proxy (over gRPC) in Go (golang). API Layer: 71
Stars: ✭ 133 (-47.64%)
Mutual labels:  telegram, mtproto
Mtg
Bullshit-free MTPROTO proxy for Telegram
Stars: ✭ 976 (+284.25%)
Mutual labels:  telegram, mtproto
Telegramapiserver
Fast, simple, async php telegram api server: MadelineProto + Amp HTTP Server
Stars: ✭ 152 (-40.16%)
Mutual labels:  telegram, mtproto
Teleperl
Pure perl mtproto/telergam client
Stars: ✭ 34 (-86.61%)
Mutual labels:  telegram, mtproto
Mtproto
Golang MTProto implementation. Current API layer is 65
Stars: ✭ 86 (-66.14%)
Mutual labels:  telegram, mtproto
Telegramd
Unofficial open source telegram server written in golang
Stars: ✭ 609 (+139.76%)
Mutual labels:  telegram, mtproto
Grammers
(tele)gramme.rs - use Telegram's API from Rust
Stars: ✭ 109 (-57.09%)
Mutual labels:  telegram, mtproto
Telegram Mtproto
Telegram client api (MTProto) library
Stars: ✭ 542 (+113.39%)
Mutual labels:  telegram, mtproto
Chatengine
Open source mtproto server written in golang with compatible telegram client
Stars: ✭ 544 (+114.17%)
Mutual labels:  telegram, mtproto
Td
Pure Go Telegram MTProto API Client
Stars: ✭ 118 (-53.54%)
Mutual labels:  telegram, mtproto
Telegramgo
CLI telegram client written in golang
Stars: ✭ 145 (-42.91%)
Mutual labels:  telegram, mtproto

JSMTProxy

Telegram Channel

High Performance NodeJS MTProto Proxy

Latest Active MTProto Proxies: https://t.me/MTProxy

Linux Installation

Install NodeJS, NPM, GIT and PM2 on your server:

Debian & Ubuntu

$> apt-get install nodejs npm git
$> npm install pm2 -g

CentsOS & RHEL

$> yum install nodejs npm git
$> npm install pm2 -g

Check the version of NodeJS, it should be version 6 or higher:

$> nodejs -v
v6.14.2

If it is lower than 6, you need to upgrade your linux OS or install nodejs from its website: https://nodejs.org/en/download/

Clone repository on your server:

$> git clone https://github.com/FreedomPrevails/JSMTProxy.git

Enter JSMTProxy directory and edit config file (config.json) if you wish. You can change the secret and listening port. it is in json format.

{
  "port":6969,
  "secret":"b0cbcef5a486d9636472ac27f8e11a9d"
}

Start the app in cluster mode using pm2:

$> pm2 start mtproxy.js -i max

You can use pm2 to list running processes and check their logs:

$> pm2 list
$> pm2 log mtproxy
$> pm2 show mtproxy

Windows Installation

Download and install NodeJS for Windows using this link: https://nodejs.org/dist/v8.11.2/node-v8.11.2-x64.msi

After installation is complete, enter "Command Prompt" and install PM2 by following command:

C:\> npm install pm2 -g

Download JSMTProxy using this link: https://github.com/FreedomPrevails/JSMTProxy/archive/master.zip

Extract the zip file into a new folder. Edit config.json (as explained above) if you wish to change port number or secret.

Start the proxy server from "Command Prompt" by following command:

C:\> pm2 start mtproxy.js -i max

Note: You may need to open the proxy port number in your Windows firewall in order for it to accept connections.

License

MIT License

Copyright (c) 2018 JSMTProxy

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].