v1.1.1
Copy/paste functionality for Deno. Compatible with macOS, Windows and Linux.
Attributes
Includes Deno configuration
Repository
Current version released
2 years ago
Dependencies
std
deno_copy_paste
Copy/paste functionality for Deno.
Usage
Prerequisites
For Linux, xsel
must first be installed.
sudo apt-get install xsel
Text
import { readText, writeText } from "https://deno.land/x/copy_paste/mod.ts";
const text = "Is you ain't?";
await writeText(text); // Writes/copies text to the system clipboard.
const textCopy = await readText(); // Reads/pastes text from the system clipboard.
Raw data
import { read, write } from "https://deno.land/x/copy_paste/mod.ts";
const file = await Deno.readFile("image.png");
await write(file); // Writes/copies raw data to the system clipboard.
const fileCopy = await read(); // Reads/pastes raw data from the system clipboard.
Testing
deno task test