XuelesszzZ 94af2b8e7b 6-30-5 | пре 1 година | |
---|---|---|
.. | ||
fallbacks | пре 1 година | |
lib | пре 1 година | |
node_modules | пре 1 година | |
browser.js | пре 1 година | |
index.d.ts | пре 1 година | |
index.js | пре 1 година | |
license | пре 1 година | |
package.json | пре 1 година | |
readme.md | пре 1 година |
Access the system clipboard (copy/paste)
Cross-platform. Supports: macOS, Windows, Linux, OpenBSD, FreeBSD, Android with Termux, modern browsers.
$ npm install clipboardy
const clipboardy = require('clipboardy');
clipboardy.writeSync('🦄');
clipboardy.readSync();
//=> '🦄'
Write (copy) to the clipboard asynchronously. Returns a Promise
.
Type: string
The text to write to the clipboard.
Read (paste) from the clipboard asynchronously. Returns a Promise
.
Write (copy) to the clipboard synchronously.
Doesn't work in browsers.
Type: string
The text to write to the clipboard.
Read (paste) from the clipboard synchronously.
Doesn't work in browsers.
The Linux binary is just a bundled version of xsel
. The source for the Windows binary can be found here.