Last Updated: February 25, 2016
·
503
· wordofchristian

Convert clipboard contents from Javascript to Coffeescript

Often you find a snippet of javascript that you want to use but have to first convert it coffeescript.

1: Install js2coffee

npm install -g js2coffee

2: Run this command from the terminal

pbpaste | js2coffee | pbcopy

Now paste the newly converted coffeescript wherever you want it.