I want to extract the meta-tags from an url, especially the title and the description but i don't know how to do this. I tried with http://nodejs.org/docs/v0.4.2/api/http.html#http.request but i get errors like '411'.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Node only parses HTTP, not HTML or other content types. Thankfully, there is a full DOM implementation for node here: https://github.com/tmpvar/jsdom Load up your HTML content there, and that'll get you pretty close to your PHP example. |
|||
|
|
