clipboardy alternatives and similar modules
Based on the "Miscellaneous" category.
Alternatively, view clipboardy alternatives based on common mentions on social networks and blogs.
-
Electron
:electron: Build cross-platform desktop apps with JavaScript, HTML, and CSS -
cheerio
The fast, flexible, and elegant library for parsing and manipulating HTML and XML. -
jsdom
A JavaScript implementation of various web standards, for use with Node.js -
v86
x86 virtualization in your browser, recompiling x86 to wasm on the fly -
ssh2
SSH2 client and server modules written in pure JavaScript for node.js -
hypernova
A service for server-side rendering your JavaScript views -
file-type
Detect the file type of a Buffer/Uint8Array/ArrayBuffer -
webworker-threads
Lightweight Web Worker API implementation with native threads -
node-pre-gyp
Node.js tool for easy binary deployment of C++ addons -
mem
Memoize functions - an optimization technique used to speed up consecutive function calls by caching the result of calls with identical input -
dot-prop
Get, set, or delete a property from a nested object using a dot path -
node-bell
Real-time anomalies detection for periodic time series. -
basic-ftp
FTP client for Node.js, supports FTPS over TLS, passive mode over IPv6, async/await, and Typescript. -
schemapack
Create a schema object to encode/decode your JSON in to a compact byte buffer with no overhead. -
nar
node.js application archive - create self-contained binary like executable applications that are ready to ship and run -
cashify
💸 Lightweight currency conversion library, successor of money.js -
stringify-object
Stringify an object/array like JSON.stringify just without all the double-quotes -
node-video-lib
Node.js Video Library / MP4 & FLV parser / MP4 builder / HLS muxer -
resolve-from
Resolve the path of a module like require.resolve() but from a given path
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of clipboardy or a related project?
README
clipboardy
Access the system clipboard (copy/paste)
Cross-platform. Supports: macOS, Windows, Linux, OpenBSD, FreeBSD, Android with Termux, and modern browsers.
Install
npm install clipboardy
Usage
import clipboard from 'clipboardy';
clipboard.writeSync('🦄');
clipboard.readSync();
//=> '🦄'
API
clipboard
.write(text)
Write (copy) to the clipboard asynchronously.
Returns a Promise
.
text
Type: string
The text to write to the clipboard.
.read()
Read (paste) from the clipboard asynchronously.
Returns a Promise
.
.writeSync(text)
Write (copy) to the clipboard synchronously.
Doesn't work in browsers.
text
Type: string
The text to write to the clipboard.
.readSync()
Read (paste) from the clipboard synchronously.
Doesn't work in browsers.
FAQ
Where can I find the source of the bundled binaries?
The [Linux binary](fallbacks/linux/xsel) is just a bundled version of xsel
. The source for the [Windows binary](fallbacks/windows/clipboard_x86_64.exe) can be found here.
Related
- clipboard-cli - CLI for this module
- copy-text-to-clipboard - Copy text to the clipboard in the browser