2.1 KiB
clipboard
The clipboard
provides methods to do copy/paste operations. An example of
writing a string to clipboard:
var clipboard = require('clipboard');
clipboard.writeText('Example String');
On X Window systems, there is also a selection clipboard, to manipulate in it
you need to pass selection
to each method:
var clipboard = require('clipboard');
clipboard.writeText('Example String', 'selection');
console.log(clipboard.readText('selection'));
clipboard.readText([type])
type
String
Returns the content in clipboard as plain text.
clipboard.writeText(text[, type])
text
Stringtype
String
Writes the text
into clipboard as plain text.
clipboard.readHtml([type])
type
String
Returns the content in clipboard as markup.
clipboard.writeHtml(markup[, type])
markup
Stringtype
String
Writes the markup
into clipboard.
clipboard.readImage([type])
type
String
Returns the content in clipboard as NativeImage.
clipboard.writeImage(image[, type])
image
NativeImagetype
String
Writes the image
into clipboard.
clipboard.clear([type])
type
String
Clears everything in clipboard.
clipboard.availableFormats([type])
Returns an array of supported format
for the clipboard type
.
clipboard.has(data[, type])
data
Stringtype
String
Returns whether clipboard supports the format of specified data
.
var clipboard = require('clipboard');
console.log(clipboard.has('<p>selection</p>'));
Note: This API is experimental and could be removed in future.
clipboard.read(data[, type])
data
Stringtype
String
Reads the data
in clipboard.
Note: This API is experimental and could be removed in future.
clipboard.write(data[, type])
data
Objecttext
Stringhtml
Stringimage
NativeImage
type
String
var clipboard = require('clipboard');
clipboard.write({text: 'test', html: "<b>test</b>"});
Writes the data
iinto clipboard.