Clip Beam lets you transfer your data easily between two devices on the same network. Just connect the devices by scanning a QR code and start sharing.
Clip Beam uses WebRTC to transfer your data, meaning all messages are transfered directly between devices without sending them to any server.
- Clone the signaling server
cd clip-beam-server
npm install
npm run dev
- Clone the client
cd clip-beam-client
npm install
npm run serve
- Go to localhost:8080
To setup your own instance of Clip Beam you need to setup the signaling server and host the frontend as simple HTML website.
Clone this repository and use the following commands:
# install dependencies
npm install
# serve locally
npm run serve
# build for the distribution
npm run build
You can configure the url of the signaling server. Per default the client assumes to reach the signaling server on localhost. To change this you need to create a .env.local
file with the following content.
VUE_APP_SERVER_URL=wss://my-url.com:9090
Rever to the Vue.js documentation on environment variables for more details.
See installation instructions for the signaling server
I used to use Threema Web and its echo chat to quickly send web links from my smartphone to my computer. Clip Beam works exactly the same way, but unlike Threema it is not a messenger, but only designed for sharing data between two devices.
Alternatives i've found are
but unlike these apps, Clip Beam does not allow connections between any devices on the same network. It rather connects two devices directly by scanning its QR code, so no one can send you unwanted data.