From command line, I’d like to take a script from my paste board (FYI: pbpaste is an OSX feature) and pipe it into the Node’s repl command line tool. For example:
pbpaste | node -e
This does not evaluate the contents in my clipboard. How do I get the runtime to do this?
The
-eoption is for running JS passed as an argument. To run JS from stdin, you can simply pipe tonodedirectly.