This module is not yet compatible with Nuxt 3
Head over to v2.nuxt.com
@nuxtjs/localtunnel

@nuxtjs/localtunnel
exposes your localhost to the world for easy testing and sharing
Local Tunnel
localtunnel exposes your localhost to the world for easy testing and sharing! No need to mess with DNS or deploy just to have others test out your changes. learn more
Features
- Secure https for all tunnels
- Show your work to anyone
- Use the API to test web hooks
- Test your UI in cloud browsers
Note This module is only enabled in dev mode.
Setup
- Add
@nuxtjs/localtunnel
dependency using yarn or npm to your project - Add
@nuxtjs/localtunnel
tomodules
section ofnuxt.config.js
modules: [
// Simple usage
'@nuxtjs/localtunnel',
// With options
['@nuxtjs/localtunnel', { subdomain: 'foobar' }],
]
Usage
(For more information see here)
On next dev, you will something like this in terminal that can be shared with the world:
> Open http://127.0.0.1:3000
> Open https://starter.localtunnel.me for external access
Options
subdomain
- Default:
process.env.npm_package_name
Request a named subdomain on the localtunnel server (default is random characters)
local_host
- Default: nuxt listening ip (auto detected)
Proxy to a hostname other than localhost
remote_host
- Default: https://localtunnel.me
Use another localtunnel server, instead of localtunnel.me