Complete residential site build with Docker Compose & Gitea Actions deployment

This commit is contained in:
CalebLewallen
2026-05-13 17:31:20 -04:00
parent f9c4e13a50
commit 3c22823f72
19354 changed files with 2097331 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
# tinyclip 📋
A tiny cross-platform clipboard library. Uses native OS clipboard functionality on Node.js.
> [!NOTE]
> In the browser, you can use the native [Clipboard API](https://developer.mozilla.org/en-US/docs/Web/API/Clipboard_API) instead of a dependency.
## Install
```sh
npm install tinyclip
```
## Usage
```js
import {readText, writeText} from 'tinyclip';
await writeText('hello world');
const text = await readText();
```
## API
### `readText(): Promise<string>`
Reads text from the clipboard.
### `writeText(text: string): Promise<void>`
Writes text to the clipboard.
## License
[MIT](./LICENSE)