Questions tagged [localtunnel]

Local tunnel helps you to share localhost web servers to the rest of the world

Local tunnel helps you to share localhost web servers to the rest of the world

65 questions
2
votes
0 answers

Nodemon can't create a local server path, after upgrading libraries

After update some libraries in Python the second console can't create the path to point out my local server which I was using to send messages from whatsapp. console: It's Ok nodemon main.py --verbose console: Get stuck nodemon --watch…
2
votes
2 answers

io.Copy write: broken pipe for big file

I have a file server and a proxy server through which I can access the file server via http Simple file server : http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { http.ServeFile(w, r, "tmp/1.mp4") }) if err :=…
Konstantin
  • 41
  • 3
2
votes
1 answer

localtunnel and CORS not working properly

I am using localtunnel to expose my backend and frontend. Right now, I have a very simple setup like this one: const httpServer = require('http').createServer(); const socketIO = require('socket.io'); const io = socketIO(httpServer, { cors: {…
davidaap
  • 1,569
  • 1
  • 18
  • 43
2
votes
1 answer

Why nothing happen when I run the git bash command: "lt --port 3000" using localtunnel?

I'm looking to develop a facebook messenger app and it requires to implement a localtunnel with nodeJS. So I installed node (v 13.9.0), npm (v 6.13.7) and localtunnel package on Git Bash (because I'm on windows 10). However when I try to get a…
Louis Clisson
  • 51
  • 2
  • 6
2
votes
1 answer

Is it possible to use ngrok or localtunnel to test local gRPC server?

I am trying to create a tunnel to call my local gRPC server from a cloud machine for development/testing purposes. I have tried ngrok with HTTP and TCP and also localtunnel, but the client seems to just hang and doesn't return any error. Is this…
Ricardo Smania
  • 2,939
  • 2
  • 26
  • 35
2
votes
1 answer

using localtunnel\ngrok with more than one local site

I have a web site that is spitted across to local servers, one for the front end, at localhost:3000 and one for the restapi that is on localhost:3001 I want to expose that dev environment using localtunnel or ngrok - but I don't know how to expose…
Noam
  • 4,472
  • 5
  • 30
  • 47
2
votes
0 answers

Access Localhost from interent via no-ip (behind router+I don't have dedicated ip)

So I recently tried out ngrok to localtunnel and its good , but I needed static url so I could give someone only once and it would stay that way always! So I found this could be done via no-ip and their client . But the problem is I am behind…
Soykot
  • 138
  • 1
  • 9
2
votes
1 answer

Ngrok setup an SSL local tunnel to an existing Vhost

I'm trying t use Ngrok to create a local tunnel to an SSL Virtual host I have on my local machine, but can't seem to get it to work. My Vhost works perfectly. The site is https://local.mysite.com Any of the command I try to use to predefine the…
Hemm K
  • 469
  • 7
  • 21
1
vote
0 answers

Using nvm (0.39.1) and Node.js (18.15.0), getting error "yargs supports a minimum Node.js version of 12"

using ubuntu 20.04.6 when running command sudo lt --port 25565 I get the output /usr/local/lib/node_modules/localtunnel/node_modules/yargs/build/index.cjs:1 "use strict";var t=require("assert");class e extends Error{constructor(t){super(t||"yargs…
1
vote
1 answer

Is there local Accepted Tunneling Solution To Test Facebook Webhooks

I am integrating WhatsApp with Django application that I am still running locally to send WhatsApp which is working fine. However to receives messages from Facebook it needs a webhook that I have implemented using Django since I am still building…
1
vote
1 answer

localtunnel don't generate url to google colab

On google colab I installed streamlit, created a simple app.py and try to use localtunnel to test it but the localtunnel link did not appear. The code I used was: First: ! pip install streamlit -q After: %%writefile app.py import streamlit as…
1
vote
0 answers

Is it safe to tunnel your APP through localtunnel?

For example, if the subdomain is something like: https://sdfshfj74ry2178263t2t34gf93dy239dg93293r233290dh2389y293.loca.lt Is there a way for someone to discover this link?
1
vote
2 answers

Call a locally hosted server from Expo

I have followed this great blog post: How to call a locally hosted server from Expo? However I get stuck at the next step: The above command will return a URL accessible across Internet of the form https://application-mock-server.localtunnel.me.…
ItFlyingStart
  • 261
  • 4
  • 13
1
vote
0 answers

Why does localtunnel not work when there is a redirect defined for a route in Laravel?

These devices are all on the same LAN: Ubuntu server Win 10 PC iPhone Android On the Ubuntu server, the /etc/hosts file has: 127.0.0.1 rcw.lt Also on the Ubuntu server, there is a Laravel app hosted by nginx: server_name rcw.lt;. The /…
Ryan
  • 22,332
  • 31
  • 176
  • 357
1
vote
2 answers

Exposing multiple docker containers running locally

I am creating a SaaS project that lets end-users run and access a dashboard as a web app which is a Docker container, which means every user has his own dashboard which is a running docker container, and I would like them to access their…