New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tinycopy

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tinycopy

Tiny library for clipboard copy.

latest
Source
npmnpm
Version
2.1.2
Version published
Maintainers
1
Created
Source

tinycopy Build Status Coverage Status npm version Bower version

Tiny library for clipboard copy.

Install

tinycopy detects and supports CommonJS (node, browserify) and AMD (RequireJS). In the absence of those, it adds a object TinyCopy to the global namespace.

Bower

Install node and bower if you haven't already.

Get tinycopy:

$ cd /project
$ bower install tinycopy

Add this script to your index.html:

<script type="text/javascript" src="bower_components/tinycopy/dist/tinycopy.js">
</script>

To pull in updates and bug fixes:

$ bower update tinycopy

Node / npm

$ npm install tinycopy

Usage

// copy from input element
var tinycopy = new TinyCopy(element, input);
tinycopy.on('success', function(data) {
  // onCopyCompleted
});
tinycopy.on('error', function(err) {
  // onCopyFailed
});

// copy from text1
var tinycopy = new TinyCopy(element, 'hello');
tinycopy.on('success', function(data) {
  // onCopyCompleted
});
tinycopy.on('error', function(err) {
  // onCopyFailed
});

// copy from text2
element.addEventListener('click', function () {
  TinyCopy.exec('hello', function(err, data) {
    if (!err) {
      // onCopyCompleted
    } else {
      // onCopyFailed
    }    
  });
});

License

MIT License

Keywords

copy

FAQs

Package last updated on 23 Jun 2016

Did you know?

Socket

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