Let's say you have this xml:
<yyy:response xmlns:xxx='http://domain.com'>
<yyy:success>
<yyy:data>some-value</yyy:data>
</yyy:success>
</yyy:response>
How would I retrieve the value in between <yyy:data> using Node.js?
Thanks.