Skip to content

Instantly share code, notes, and snippets.

@tmtk75
Last active October 11, 2015 12:18
Show Gist options
  • Save tmtk75/3857612 to your computer and use it in GitHub Desktop.
Save tmtk75/3857612 to your computer and use it in GitHub Desktop.
###
Example: retrieving all links of yahoo.com
$ npm up
$ node_modules/.bin/coffee example.coffee
###
require "./node-jquery"
$.ajax
url: 'http://www.yahoo.com'
success: (res)->
for e in $(res).find("a")
e = $(e)
console.log "[#{e.text()}](#{e.attr("href")})"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment