Clipboard change event for Node.js, Electron.js, NW.js. It's not being polled. This implementation is based on child_process. A native node module using N-API is being developed.
The motivation for creating this open project was these:
1. Add Clipboard change event to clipboard API
3. Discussion: feasibility for clipboard change events
import ClipboardListener from 'EventClipboard'
// In case of CommonJS
// const ClipboardListener = require('ClipboardEvent');
// To start listening
ClipboardListener.startListening();
ClipboardListener.on('change', () => {
console.log('Clipboard changed');
});
// To stop listening
ClipboardListener.stopListening();
- Access
node_modules/clipboard-event/plataform
and run the following command to give execution permission for files from your OS:
chmod +x <filename>