save-clipboard-image
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

save-clipboard-image

Save clipboard image to file. works in Mac OSX NodeJS.

Install

CLI

$ npm install -g save-clipboard-image

API

$ npm install save-clipboard-image

Usage

CLI

$ pbimage [filename]

API

const { saveClipboardImage } = require('save-clipboard-image');

(async () => {
  const imagePath = await saveClipboardImage('./path/to/folder', 'image-name');

  console.log(image saved in', imagePath);
  // '/Users/.../path/to/folder/image-name.png'
})();

saveClipboardImage(folder[, filename])

  • folder a path to folder. default: process.cwd()
  • filename a name of the image file. default: Screen Shot ${Number(new Date())}

returns full path of the image file.

Dependencies (2)

Dev Dependencies (10)

Package Sidebar

Install

npm i save-clipboard-image

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

10.4 kB

Total Files

8

Last publish

Collaborators

  • minidonut