clipboardy

WebJar for clipboardy

Лицензия

Лицензия

MIT
Категории

Категории

CLI Взаимодействие с пользователем
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

clipboardy
Последняя версия

Последняя версия

1.2.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

clipboardy
WebJar for clipboardy
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/sindresorhus/clipboardy

Скачать clipboardy

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/clipboardy/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>clipboardy</artifactId>
    <version>1.2.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/clipboardy/
implementation 'org.webjars.npm:clipboardy:1.2.2'
// https://jarcasting.com/artifacts/org.webjars.npm/clipboardy/
implementation ("org.webjars.npm:clipboardy:1.2.2")
'org.webjars.npm:clipboardy:jar:1.2.2'
<dependency org="org.webjars.npm" name="clipboardy" rev="1.2.2">
  <artifact name="clipboardy" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='clipboardy', version='1.2.2')
)
libraryDependencies += "org.webjars.npm" % "clipboardy" % "1.2.2"
[org.webjars.npm/clipboardy "1.2.2"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.webjars.npm » arch jar [2.1.0,3)
org.webjars.npm : execa jar [0.8.0,0.9)

Модули Проекта

Данный проект не имеет модулей.

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

const clipboardy = require('clipboardy');

clipboardy.writeSync('🦄');

clipboardy.readSync();
//=> '🦄'

API

clipboardy

.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 is just a bundled version of xsel. The source for the Windows binary can be found here.

Related

Версии библиотеки

Версия
1.2.2
1.1.0