# node-native-clip

> Native module for NodeJS for reading from and writing to the clipboard.

Latest version **0.0.1** (published 2018-09-07) · 0 weekly downloads

## Install

```sh
npm install node-native-clip
pnpm add node-native-clip
yarn add node-native-clip
bun add node-native-clip
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2018-09-07 |
| First published | 2018-09-07 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 80.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | yes |
| Maintainers | pepsryuu |

## Links

- npm: https://www.npmjs.com/package/node-native-clip
- npm.io page: https://npm.io/package/node-native-clip

## Recent versions

- 0.0.1 (latest) — 2018-09-07

## README

# Node Native Clip

A cross-platform native node module for reading and writing to the operating system's clipboard.

Wraps the [Clip](https://github.com/dacap/clip) C++ library.

## Installation

```
npm install node-native-clip
```

## Usage

```
let clip = require('node-native-clip');

// Writing to the clipboard
clip.setText('Hello Clipboard!');

// Reading from the clipboard
console.log(clip.getText());
```

---
_Source: https://npm.io/package/node-native-clip · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
