libxmljs2 icon indicating copy to clipboard operation
libxmljs2 copied to clipboard

Results 28 libxmljs2 issues
Sort by recently updated
recently updated
newest added

Hi, thanks for doing this :) While I would love some insight into how I can do streaming validation - my immediate problem is as follows for a large files:...

When using this package in a node worker thread it throws the error "Module did not self-register". Reading up on this error I found some comments in the nodejs github...

HI, I am investigating migration over from libxmljs to libxmljs2 when I noticed this difference between docs and typing information. From the typings https://github.com/marudor/libxmljs2/blob/main/index.d.ts#L122 ```type(): 'comment' | 'element' | 'text'...

Seeing this error, any suggestion for a fix or workaround? Using node 14.16.1. ``` Error: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by /home/project/node_modules/libxmljs2/build/Release/xmljs.node) ```

On the element there should be a method to insert a new node at a reference within an element. Currently, for example, there is no possibility to insert a node...

Originally posted here: https://github.com/cdegalitt/libxmljs2-xsd/issues/7 I am running in to the same issue using only this libxmljs2 package, so I'm opening up an issue here for visibility. Leigh-M commented on Apr...

When calling `doc.validate(xsdDoc)` it would be useful to be able to add `{ create: true }` as the second parameter. The idea is that this would set `XML_SCHEMA_VAL_VC_I_CREATE` on the...

Hi, I am treying validate a xml againt xsd. All xsd are from third and has the encoding: When I try validate my xmls, I get: ``` F:\Programas\vuejs\nuxt-iclindoctor\server_iclindoctor\node_modules\libxmljs2\lib\document.js:117 return bindings.fromXml(string,...

articleTag = xmlDoc.root() subArticle_string = fs.readFileSync("/Users/sk/Microbiology_Task/01FirstPreprint/subarticle.xml"); var fragment = libxmljs.parseXml(subArticle_string); articleTag.addChild(fragment); ![Screenshot 2021-08-19 at 1 31 32 PM](https://user-images.githubusercontent.com/40059066/130031167-cdaf7d39-9005-4bc3-b58d-18d468af09af.png) My Output file had the dtd in between. Is there anyway to...