Skip to main content
Deno 2 is finally here 🎉️
Learn more

deno_copy_paste

Deno

Clipboard API-like functionality.

import { copy, paste } from "https://deno.land/x/copy_paste/mod.ts";

await copy("Is you is or is you ain't?"); // Copies text to the system clipboard

await paste(); // Returns text from the system clipboard

Documentation

Check it out here.