Sync your clipboard between two computers
This is an inneficient way to synchronize two clipboards using the electron API to access and modify it.
By default, your instance will listen on all interfaces at port 7777. On startup, it will ask you the address of the other machine.
In the background, they use websockets to send the clipboard status to the other machine, if it detects any change on the local clipboard.
This tool supports synchronization of the following clipboards:
- text
- html
- image
- rtf
- bookmark
$ npm install
$ npm makeIf you are on MacOS, you may want to add in
package.jsona DMG electron-forge maker. Note that building for MacOS has not been tested.
- Improve P2P communication. Currently: 2 websocket channels used unidirectionally.
- Support more than two machines. But trying to keep the P2P design -> no master/slave
- Release compiled versions for all platforms