Skip to content

Instantly share code, notes, and snippets.

@pilgreen
Created August 14, 2019 15:21
Show Gist options
  • Save pilgreen/4775e7e7f2088ed1cfc3a974e68052e6 to your computer and use it in GitHub Desktop.
Save pilgreen/4775e7e7f2088ed1cfc3a974e68052e6 to your computer and use it in GitHub Desktop.
Copy output to the clipboard in Node
function pbcopy(data) {
var proc = require('child_process').spawn('pbcopy');
proc.stdin.write(data); proc.stdin.end();
}
pbcopy(somObject);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment