Socket
Socket
Sign inDemoInstall

clipboard-mini

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    clipboard-mini

Super tiny copy-to-clipboard JS library


Version published
Weekly downloads
40
decreased by-27.27%
Maintainers
1
Install size
33.8 kB
Created
Weekly downloads
 

Readme

Source

clipboard-mini

Super tiny copy-to-clipboard JS library. Only 1.34KB!

If you've come from clipboard.js and want a smaller package, you get pretty much the same here at half the cost (in KB).

No dependencies at all, no flash no nothing. Vanilla JS 🚀

How to use it

Import clipboard-mini into your project like any other module:

yarn add clipboard-mini

To start using it, you only need to give ClipboardMini a selector.

import ClipboardMini from 'clipboard-mini'

const clipbutton = new ClipboardMini('.js-clipboard')

<button class="btn js-clipboard">Copy</button>

You can target what to copy via attribute, which can be text or a selector:

  • data-clipboard-text: You will copy the text contained in th attribute to the clipboard
  • data-clipboard-target: A unique CSS selector (it will grab the first result available) from which to copy its contents.

Feedback

In order to let the user know something has been copied to the clipboard, the button label will change to Copied! for 2.5seconds, then revert to the original label.

Keywords

FAQs

Last updated on 19 Jul 2019

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