Expose your localhost to the internet from inside Neovim (for the truly lazy among us)
This is a very tiny Neovim plugin that lets you expose a local port using either Cloudflared or Ngrok — without leaving Neovim.
Yes, you can already do this with a one-liner in your terminal. This plugin exists for people like me who prefer to run everything from within Neovim and can't be bothered to open another tab or terminal.
$PATH
:cloudflared
ngrok
With lazy.nvim
:
{
"azratul/expose-localhost.nvim",
}
With packer.nvim
:
use {
"azratul/expose-localhost.nvim",
}
:ExposeStart <port> [cloudflared|ngrok]
Examples:
:ExposeStart 3000
:ExposeStart 8080 ngrok
:ExposeStop
require("expose-localhost").expose(3000, "cloudflared")
You can verify everything is working with:
:lua require("expose-localhost").health()
Or with Neovim's built-in health check:
:checkhealth expose-localhost