npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bicycle-codes/copy-button

v0.1.0

Published

Copy button made with web components

Downloads

225

Readme

copy button

tests module semantic versioning dependencies license

A button to copy some text to the system clipboard, made with webcomponents, with no dependencies.

install

npm i -S @bicycle-codes/copy-button

demonstration

See bicycle-codes.github.io/copy-button for an example.

globals

This looks at css variables --success-color and --copy-color which determines the color of the success checkmark and copy icon.

use

Include this package, then use the tag <copy-button> in HTML.

Example without a build step

Copy the files

Copy files so they are accessible by your web server.

JS
cp ./node_modules/@bicycle-codes/copy-button/dist/index.min.js public/copy-button.js
CSS
cp ./node_modules/@bicycle-codes/copy-button/dist/style.min.css public/copy-button.css

Use in HTML

<head>
    <!-- style -->
    <link rel="stylesheet" href="./copy-button.css">
</head>

<body>
    <!-- use the tag -->
    <copy-button payload="example text"></copy-button>

    <!-- include the script -->
    <script src="/copy-button.js" type="module"></script>
</body>

With a JS build step

We expose several import options

// default, unminified
import '@bicycle-codes/copy-button'

// minified
import '@bicycle-codes/copy-button/min'

// style
import '@bicycle-codes/copy-button/style.css'

// style, minifed
import '@bicycle-codes/copy-button/min/style.css'

In vite, for example, import like this

import '@bicycle-codes/copy-button'
import '@bicycle-codes/copy-button/style.css'
// or minified css
import '@bicycle-codes//copy-button/min/style.css'

CSS

Override the variables --success-color and --copy-color to customize the color.

.copy-button {
    --success-color: green;
    --copy-color: blue;
}

Create a button like this

screenshot of the button, pre-click


screenshot of the button, post-click