xml - Parse.com Cloud Code Evaluate xPath? -
i new using parse.com cloud code, , ios developer. in ios use hpple, xpath evaluator parse xml document. need in cloud code. wondering if there way in javascript sdk expressions like xpath expression: //day[@name='monday']/meal[@name='lunch']/counter[@name='deli']/dish/name to evaluate xml url: http://64.182.231.116/~spencerf/union_college/upperclass_sample_menu.xml this return strings "made order deli core", "caprese panini biggie sandwich". there way in javascript sdk or there modules can install parse's cloud code can evaluate xml this? the code have tried far this: parse.cloud.define("next", function(request, response) { var xmlreader = require('cloud/xmlreader.js'); parse.cloud.httprequest({ url: 'http://64.182.231.116/~spencerf/union_college/upperclass_sample_menu.xml', success: function(httpresponse) { //console.log(httpresponse.text); var somexml = httprespo...