brandon93s / clipboardy

Access the system clipboard (copy/paste)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

clipboardy Build Status: macOS & Linux Build status: Windows

Access the system clipboard (copy/paste)

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

Install

$ npm install clipboardy

Usage

const clipboardy = require('clipboardy');

clipboardy.writeSync('🦄');

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

API

clipboardy

.write(input)

Write (copy) to the clipboard asynchronously. Returns a Promise.

input

Type: string

.read()

Read (paste) from the clipboard asynchronously. Returns a Promise.

.writeSync(input)

Write (copy) to the clipboard synchronously.

input

Type: string

.readSync()

Read (paste) from the clipboard synchronously.

Related

License

MIT © Sindre Sorhus

About

Access the system clipboard (copy/paste)

License:MIT License


Languages

Language:JavaScript 100.0%