clipboard-tool

Copy text to the clipboard (in the browser)


Keywords
clipboard, copy, text, browser
License
LGPL-3.0
Install
npm install clipboard-tool@1.1.0

Documentation

clipboard-tool

Build Status Dependencies Development Dependencies

npm

Example

var Clipboard = require('clipboard-tool');

// Write the string 'Hello' to the system's clipboard
Clipboard.write('Hello');

This package needs document.execCommand('copy') to work and has no effect otherwise.

If you are creating a Chrome or Opera extension, be sure to include the clipboardWrite permission in your manifest.

Contributing

Download source and compile:

git clone git@github.com:[USERNAME]/clipboard-tool.git
yarn prepublish

Watch for changes and recompile:

yarn start