Need to share text between devices? Copy something on your computer and paste it on your phone — without installing any apps, without logging into anything, without waiting for anything to sync.
We've all been there. You find a code snippet, a password, a WiFi login, or a quick note on your computer. You need it on your phone. What do you do?
The old way: Open Slack → Send message → Pick up phone → Open Slack → Copy text. Or email yourself. Or use a "note-taking app" that requires an account. Too many steps.
The new way: Open a webpage → It auto-pastes your clipboard → Scan QR code with phone → Text auto-copies → Paste anywhere. Two devices, one text, zero friction.
This is Cloud Clipboard — a serverless tool that encodes text directly into the URL, making it instantly shareable between any devices with a web browser.
Why Another Text Sharing Tool?
Existing solutions all have friction:
- Messaging apps require both devices to be logged in
- Note apps need accounts and sync setup
- Email is slow and clunky for quick text
- Cloud storage is overkill for a few lines of text
I wanted something that works immediately — no signup, no pairing, no installation. Just open and go.
Key Features
Auto-Paste on Load
When you open Cloud Clipboard, it automatically reads your clipboard and populates the text field. No manual pasting required. Just open the page and you're ready to share.
Real-Time Link Generation
As you type or edit the text, the share link updates automatically (with a 500ms debounce to avoid excessive updates). No need to click "generate" — the link is always ready when you are.
Always-Visible QR Code
The QR code appears instantly alongside the link. No extra clicks, no "show QR" button. Just point your phone camera and scan.
Auto-Copy for Receiver
When someone opens your shared link, the text automatically copies to their clipboard. A toast notification confirms it — they just need to paste (Ctrl+V). No manual copy step required.
No Server Required
The text is encoded directly into the URL using Base64 with URL-safe characters. No database, no API calls, no server storage. The link itself contains everything needed.
Keyboard Shortcuts
Power users can generate links instantly with Ctrl+Enter. No mouse required.
| Shortcut | Action |
|---|---|
| Ctrl+Enter | Generate share link |
| Ctrl+V | Paste from clipboard |
Use Cases
Share Code Snippets
Found a useful function on Stack Overflow? Need to share a configuration with a colleague? Copy it, generate a link, and the receiver can paste it directly into their editor.
Transfer Passwords
Share a temporary password or WiFi credentials. Since the link contains the text, you can delete it from your browser history after use.
Send Quick Notes
Jot down a reminder, an address, or a phone number on your computer and access it instantly on your phone.
Copy Between Computer and Phone
The most common use case: something on your screen needs to be on your phone. Cloud Clipboard bridges that gap in seconds.
Share with Guests
Visitors need your WiFi password? Generate a QR code they can scan — no need to spell out complicated passwords.
How It Works
The technical approach is simple but elegant:
- Input — Text is captured from your clipboard or entered manually
- Encoding — Text is converted to Base64 with URL-safe characters (replacing
+with-,/with_, removing padding) - URL Generation — Encoded text becomes the URL hash (e.g.,
https://dev.luling.xyz/cloud-clipboard/#SGVsbG8=) - Sharing — Link or QR code is shared with the receiver
- Decoding — Receiver's browser decodes the hash and copies text to clipboard
Everything happens client-side. No server processes your text, no database stores it, no API logs your request. The URL itself is the storage medium.
Privacy Considerations
Since the text is encoded directly into the URL:
- Anyone with the link can read the text — Share via secure channels only
- URLs may be stored in browser history — Clear history after sensitive transfers
- Not suitable for highly sensitive data — Use encrypted messaging for passwords, financial info, etc.
- Links work forever — As long as someone has the URL, they can access the text
For casual text sharing — code snippets, notes, non-sensitive credentials — Cloud Clipboard is perfect. For sensitive data, stick to end-to-end encrypted messaging.
Limitations
The URL-based approach has some constraints:
- Text length — Works best for text under 2,000 characters (max 8,000)
- URL size — Longer text creates longer URLs which may be unwieldy
- Browser support — Requires modern browser with Clipboard API
For most everyday text sharing needs, these limitations aren't an issue. But if you need to share entire documents or files, you'll want a different solution.
Technical Details
Built with pure HTML, CSS, and JavaScript:
- No frameworks — Vanilla JS, no build process
- No dependencies — Runs entirely in the browser
- Fast loading — Minimal code means instant page loads
- Responsive design — Works on phones, tablets, and desktops
- Dark mode — Easy on the eyes in any lighting
Try Cloud Clipboard
Ready to share text between devices? Open the Cloud Clipboard and try it out. Copy something, scan the QR code, and paste on your phone. No apps, no signup — just instant text sharing.
Have feedback or feature requests? Let me know.