Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@creately/clipboard

Package Overview
Dependencies
Maintainers
7
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@creately/clipboard

Clipboard Service which uses system clipboard as primary and local storage as fallback.

latest
npmnpm
Version
1.0.4
Version published
Maintainers
7
Created
Source

@creately/clipboard

Clipboard service which uses system clipboard as primary and local storage as fallback.

Support: All browsers and Embedded( iframe ).

Install

$ npm install @creately/clipboard

Usage

import { Clipboard } from '@creately/clipboard';

new Clipboard().copy('your data');

console.log(await new Clipboard().paste());
//=> 'your data'

Usage with Angular

// Import it in module
import { Clipboard } from '@creately/clipboard';

// Add this in your module.
{ provide: Clipboard, useFactory: () => new Clipboard() },

// Add clipboard in constructor.
class MyClass {
  constructor( private clipboard: Clipboard ) {}
  // ...

  public doCopy( data ) {
    this.clipboard.copy( data );  
  }

  public async doPaste() {
    return await this.clipboard.paste();
  }
}

API

.copy(text)

Copy given text clipboard asynchronously. Returns a Promise.

text

Type: string

The text to write to the clipboard.

.paste()

Paste from the clipboard asynchronously. Returns a Promise.

FAQs

Package last updated on 29 Apr 2020

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