Copy to the clipboard without using any flash.
You can populate any content into the clipboard when the user presses "CTRL-C".
It basically attaches to the "CTRL" key events and creates a hidden, selected textarea. Inspired by Trello.
npm install copy2clipboard --save
var ClipBoard = require("./clipboard.js");
var clip = new ClipBoard();
clip.set("fancy clipboard"); // set any content
MIT