Popularity
5.7
Stable
Activity
3.6
-
1,721
16
81

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Miscellaneous     Paste     Copy     Write     Read     Xsel     Xclip     Clip     Pbcopy     Pasteboard     Copy-paste     Clipboard    
Latest version: v2.3.0

clipboardy alternatives and similar modules

Based on the "Miscellaneous" category.
Alternatively, view clipboardy alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of clipboardy or a related project?

Add another 'Miscellaneous' Module

README

clipboardy

Access the system clipboard (copy/paste)

Cross-platform. Supports: macOS, Windows, Linux, OpenBSD, FreeBSD, Android with Termux, and modern browsers.

Install

npm install clipboardy

Usage

import clipboard from 'clipboardy';

clipboard.writeSync('๐Ÿฆ„');

clipboard.readSync();
//=> '๐Ÿฆ„'

API

clipboard

.write(text)

Write (copy) to the clipboard asynchronously.

Returns a Promise.

text

Type: string

The text to write to the clipboard.

.read()

Read (paste) from the clipboard asynchronously.

Returns a Promise.

.writeSync(text)

Write (copy) to the clipboard synchronously.

Doesn't work in browsers.

text

Type: string

The text to write to the clipboard.

.readSync()

Read (paste) from the clipboard synchronously.

Doesn't work in browsers.

FAQ

Where can I find the source of the bundled binaries?

The [Linux binary](fallbacks/linux/xsel) is just a bundled version of xsel. The source for the [Windows binary](fallbacks/windows/clipboard_x86_64.exe) can be found here.

Related