sindresorhus/copy-text-to-clipboard

Copy text to the clipboard in modern browsers (0.2 kB)

1,046

stars

41

commits

JavaScript

primary language

Feb 2, 2026

updated

README

copy-text-to-clipboard

Copy text to the clipboard in modern browsers (0.2 kB)

Try it out!

Comparison

Install

npm install copy-text-to-clipboard

[!TIP] Consider using navigator.clipboard.writeText(text) directly. Keep in mind that the native API requires a secure context (HTTPS). This package works in non-secure contexts too.

Usage

import copy from 'copy-text-to-clipboard';

button.addEventListener('click', () => {
	copy('πŸ¦„πŸŒˆ');
});

API

copy(text, options?)

Copy text to the clipboard.

Returns a boolean of whether it succeeded to copy the text.

Must be called in response to a user gesture event, like click or keyup.

options

Type: object

target

Type: HTMLElement
Default: document.body

Specify a DOM element where the temporary, behind-the-scenes textarea should be appended, in cases where you need to stay within a focus trap, like in a modal.

  • clipboardy - Access the system clipboard (copy/paste) in Node.js

Contributors

sindresorhus

30 commits

BendingBender

2 commits

Richienb

2 commits

Haraldson

1 commits

sindresorhus/copy-text-to-clipboard

Copy text to the clipboard in modern browsers (0.2 kB)

1,046

stars

41

commits

JavaScript

primary language

Feb 2, 2026

updated

README

copy-text-to-clipboard

Copy text to the clipboard in modern browsers (0.2 kB)

Try it out!

Comparison

Install

npm install copy-text-to-clipboard

[!TIP] Consider using navigator.clipboard.writeText(text) directly. Keep in mind that the native API requires a secure context (HTTPS). This package works in non-secure contexts too.

Usage

import copy from 'copy-text-to-clipboard';

button.addEventListener('click', () => {
	copy('πŸ¦„πŸŒˆ');
});

API

copy(text, options?)

Copy text to the clipboard.

Returns a boolean of whether it succeeded to copy the text.

Must be called in response to a user gesture event, like click or keyup.

options

Type: object

target

Type: HTMLElement
Default: document.body

Specify a DOM element where the temporary, behind-the-scenes textarea should be appended, in cases where you need to stay within a focus trap, like in a modal.

  • clipboardy - Access the system clipboard (copy/paste) in Node.js

Contributors

sindresorhus

30 commits

BendingBender

2 commits

Richienb

2 commits

Haraldson

1 commits

Languages

JavaScript

50.7%

HTML

45.2%

TypeScript

4.0%