Node.js XML parser on windows

I am using node.js for windows. I want to evaluate xpath, so I'm looking for a node.js xml module that can do this (and not sax). So far I have found Libxmljs , but I can not install it on windows.

Any idea?

EDIT: I prefer not to use cygwin, as more people will work on it, and my experience is that cygwin will be confused.

EDIT: solution

+6
source share
2 answers

I found it - use xmldom with xpath.js . More details here .

+2
source

Source: https://habr.com/ru/post/906536/


All Articles