Metadata-Version: 2.1
Name: jprq
Version: 2.0.1
Summary: Get your localhost online and https - Ngrok Alternative
Home-page: https://github.com/azimjohn/jprq
Author: Azimjon Pulatov
Author-email: azimjohn@yahoo.com
Maintainer: Azimjon Pulatov
Maintainer-email: azimjohn@yahoo.com
License: MIT
Description: # JPRQ - Ngrok Alternative
        
        ## Get Your Localhost Online and HTTPS
        
        
        [![jprq demo](https://i.imgur.com/SEKQv7N.png)](https://www.youtube.com/watch?v=BXuB3cK8R0g "jprq demo")
        
        ## How JPRQ is different from Ngrok?
        
        - JPRQ is a free and open-source Ngrok alternative to expose local servers online easily.
        - It allows developers to serve unlimited requests to the local server compared to Ngrok's **40 requests/minute** limit.
        - It can expose multiple ports at the same time compared to Ngrok with **1 port** limit.
        
        ---
        
        ## How to install
        
        ```bash
        $ pip install jprq
        ```
        
        ## How to use
        
        Replace 8000 with the port you want to expose
        
        ```
        $ jprq 8000
        ```
        
        For windows users:
        ```
         > python3 -m jprq 8000
        ```
        
        Press Ctrl+C to stop it
        
        ## [NEW] Custom Subdomain
        
        Replace `subdomain` with a subdomain you want
        
        ```
        $ jprq 8000 -s=subdomain
        ```
        
        ## How to uninstall
        
        ```bash
        $ pip uninstall jprq
        ```
        
        ## How JPRQ Works
        
        <img width="100%" src="https://i.imgur.com/1kXPzyd.png">
        
        ---
        
        ### JPRQ's Server-side implementation in Golang:
        
        <a href="https://github.com/azimjohn/jprq.io">https://github.com/azimjohn/jprq.io</a>
        
        ## Limitations
        
        - Cannot expose WebSocket
        - Doesn't work with HTTP Long Polling
        
        ## Troubleshooting
        
        - With serving React, Vue or any other modern web apps, make sure you run production server or build the app and serve static files as JPRQ is not capable of exposing Websocket.
        
Keywords: jprq live localhost online https ngrok alternative
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown
