# Developing Zoom Marketplace Apps w/ ngrok

DevFeed: [Developing Zoom Marketplace Apps w/ ngrok](<https://devfeed.tech/articles/developing-zoom-marketplace-apps-w-ngrok-24763.md>)

Original publisher: [Read original article](<https://medium.com/zoom-developer-blog/developing-zoom-marketplace-apps-w-ngrok-3a53c895bb89?source=rss----4a85731adaff---4>)

Author: Tim Slagle

Published: 2020-02-14T03:01:01Z

Content type: tutorial

Language: en

Sources: [Zoom Developer Blog - Medium](<https://devfeed.tech/sources/zoom-developer-blog-medium.md>)

Topics: [web applications](<https://devfeed.tech/topics/web-applications.md>), [Command-line interface](<https://devfeed.tech/topics/cli.md>), [nginx](<https://devfeed.tech/topics/nginx.md>), [HTTP](<https://devfeed.tech/topics/http.md>), [Cloud](<https://devfeed.tech/topics/cloud.md>), [datacenter](<https://devfeed.tech/topics/datacenter.md>)

Tags: [app-development](<https://devfeed.tech/tags/app-development.md>), [apps](<https://devfeed.tech/tags/apps.md>), [cloud](<https://devfeed.tech/tags/cloud.md>), [command-line](<https://devfeed.tech/tags/command-line.md>), [data-center](<https://devfeed.tech/tags/data-center.md>), [developer](<https://devfeed.tech/tags/developer.md>), [developers](<https://devfeed.tech/tags/developers.md>), [http](<https://devfeed.tech/tags/http.md>), [load-balancer](<https://devfeed.tech/tags/load-balancer.md>), [ngrok](<https://devfeed.tech/tags/ngrok.md>), [prototype](<https://devfeed.tech/tags/prototype.md>), [proxy](<https://devfeed.tech/tags/proxy.md>), [subscription](<https://devfeed.tech/tags/subscription.md>), [support](<https://devfeed.tech/tags/support.md>), [terminal](<https://devfeed.tech/tags/terminal.md>), [web-apps](<https://devfeed.tech/tags/web-apps.md>), [zoom](<https://devfeed.tech/tags/zoom.md>)

## AI overview

This tutorial explains how developers can use ngrok tunnels while building Zoom Marketplace web apps. It covers why ngrok is useful for prototyping, its production limitations, and steps such as using licensed and reserved endpoints, running it as a service, and placing a load balancer in front of it when scaling.

## Source excerpt

Image Source: ngrok.com NGROK is a wonderful tool for developers to use when they are building web apps and tools. NGROK allows you to create introspectable tunnels directly to localhost. Not only does it allow developers to prototype fast, but it also allows for quick tunnels from the open web to your web apps and tools. A lot of our developers use NGROK to make developing their web apps easier, but this can come with its own set of drawbacks. Today we will be talking about how to use NGROK effectively to make sure your app remains available for your users. Why would you use NGROK as opposed to a more traditional reverse proxy like NGINX/Apache? NGINX/Apache can be a little more complicated than needed. Sometimes you need a quick on authenticated HTTP tunnel to your app. NGROK is very quick. It is a simple command-line tool that makes tunnels with a single command. You are prototyping and need a quick and dirty tunnel. The dangers of using NGROK for production applications NGROK is a great tool, but when you are moving to a production environment there are some things to be aware of. Without a license, the NGROK URL will expire after a short period. A single simple tunnel is a single point of failure and can work against you if not managed properly. It is easy to out-scale an NGROK tunnel as you grow your app. But Tim, what can we do to make sure our app remains available? I'm glad you asked! There are a few steps you can take to make sure your NGROK tunnel remains active so your users can always find and use your app! Purchase an NGROK subscription. If you are going to use NGROK as your tunnel service then we highly recommend buying a license. Buying a license comes with an SLA from NGROK and will ensure you have support if something should go wrong. Don't use auto-generated endpoints. Auto-generated endpoints can be problematic as they can be reserved by another account by mistake. Make sure to reserve a subdomain for use with NGROK so you don't lose your tunnel.