I am using Saxon-JS to convert an XML file to an XSL-fo. I follow the documentation and leverage the xslt3 command to first compile an XSL file to a sef file such as:
"compile": "xslt3 -xsl:./src/styles/sample.xsl -export:sef/sample.sef.json -t -nogo -ns:##html5"
However, this causes an issue that the server needs to reload and compile the stylesheet whenever there is a change in stylesheet.
My question is: how to prevent the server from reloading when a change is made? Thank you in advance.
Using
SaxonJS.XPath.evaluate('transform(...)', ..., { ... })
it is also possible to run XSLT directly. Whether that works and performs for you is something you would need to test, I don't know how complex your XSLT is, whether it has includes or imports, how large the input XML and how large the resulting XSL-FO is. But if the target format is XSL-FO and not HTML in the browser (although that way I don't understand the use of-ns:##html5
) you might not need the interactive Saxon extensions that thexslt3
compilation supports and adds.Simple example: