Socket
Socket
Sign inDemoInstall

@uiw/copy-to-clipboard

Package Overview
Dependencies
0
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @uiw/copy-to-clipboard

Copy to clipboard.


Version published
Weekly downloads
83K
increased by1.53%
Maintainers
2
Install size
150 kB
Created
Weekly downloads
 

Readme

Source

Copy Text to Clipboard

Buy me a coffee No Dependencies NPM Downloads Build & Deploy Open in unpkg npm version Repo Dependents Coverage Status

This styling is an extra step which is likely not required.

Why is it here? To ensure:

  1. the element is able to have focus and selection.
  2. if element was to flash render it has minimal visual impact.
  3. less flakyness with selection and copying which might occur if the textarea element is not visible.

The likelihood is the element won't even render, not even a flash, so some of these are just precautions. However in IE the element is visible whilst the popup box asking the user for permission for the web page to copy to the clipboard. Place in top-left corner of screen regardless of scroll position.

Usage

You will need Node.js installed on your system.

$ npm i @uiw/copy-to-clipboard
import copyTextToClipboard from '@uiw/copy-to-clipboard';

copyTextToClipboard('test', (isCopy) => {
  console.log('isCopy:', isCopy);
});

Or manually download and link copy-to-clipboard in your HTML, It can also be downloaded via UNPKG:

<script src="https://unpkg.com/@uiw/copy-to-clipboard/dist/copy-to-clipboard.umd.js"></script>
<script type="text/javascript">
copyTextToClipboard('test', (isCopy) => {
  console.log('isCopy:', isCopy);
});
</script>

Contributors

As always, thanks to our amazing contributors!

Made with contributors.

License

Licensed under the MIT License.

Keywords

FAQs

Last updated on 26 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc