File size: 274 Bytes
c857a91 |
1 2 3 4 5 6 7 8 9 |
import {setup, startTunnel} from 'cloudflared-tunnel'
await setup() // setup the project | you need to do this only once
await startTunnel({
host: 'http://localhost', // required
port: 3000, // required
}) // pass in the host and port of the server you want to tunnel
|