I have xsl
file I would like to apply to some XML content in node.js
. I found saxon-js
and it seems to offer what I need. While I'm slightly lost in the documentation, it seems like I should first convert my xsl
file to .sef
file before running transform in node.
saxon-js
readme mentiones other package, xslt3
that should be able to do that (see readme):
Compiling a stylesheet
To compile a stylesheet held in books.xsl to a SEF file in books.sef.json, to be run either in the browser or Node.js, use the command line:
xslt3 -xsl:books.xsl -export:books.sef.json -t -ns:##html5
However, after installing xslt3
package, there's no executable available to run the conversion.
Am I missing something? How can I convert xsl
to sef.json
(one time is OK, don't need to run it from server dynamically or anything)?
Adding to nosvalds's answer: After
npm i -g xslt3
you can call the command to compile a stylesheet to sef in nodejs with: