KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
JSMTProxy
★ 320
Open GitHub ↗
High Performance NodeJS MTProto Proxy
Download README (.md)
Explore Similar Repositories
ionic-audio
:
An audio player for Ionic 3 and Angular 4. Works with HTML 5 audio or native audio using Cordova Media plugin.
cronv
:
A visualizer for CRONTAB
mqttMultimeter
:
Cross platform MQTT client for MQTT debugging and message inspection. It is based on the .NET library MQTTnet.
dockyard
:
A fast & beautiful Docker GUI client
ruoyi-plus-soybean
:
RuoYi-Plus-Soybean 是一个现代化的企业级多租户管理系统,它结合了 RuoYi-Vue-Plus 的强大后端功能和 Soybean Admin 的现代化前端特性,为开发者提供了完整的企业管理解决方案。
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
JSMTProxy
?
Download (.md)
# JSMTProxy [](https://t.me/JSMTProxy) 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.