
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
npm install libxmljs
NodeJS bindings for libxml2 written in Typescript
https://libxmljs.github.io/libxmljs/
For more examples, check out the test suite.
import libxmljs from "libxmljs";
libxmljs
.parseXmlAsync(
`
<?xml version="1.0" encoding="UTF-8"?>
<root>
<child foo="bar">
<grandchild baz="fizbuzz">grandchild content</grandchild>
</child>
<sibling>with content!</sibling>
</root>
`
)
.then((xmlDoc) => {
const gchild = xmlDoc.find("//grandchild")[0];
console.log(gchild.text()); // prints "grandchild content"
const child = xmlDoc.root()?.child(0);
console.log(child?.getAttribute("foo")?.value()); // prints "bar"
});
npm run init-submodules
Clones libxml2 source code to
vendor/libxml2
npm run configure
Generate new cmake config headers with cmake in vendor/libxml2.config. Used when updating to a new libxml2 version.
npm run build
Build the C++ source code using node-gyp
npm run swig
Generate a new
src/libxml2.cc
andswig.xml
file by processing the native code using SWIG. Used when making changes to native code or any of the SWIG interface files (src/*.i)
npm run tsgenerate
Generates typescript definitons for native bindings exports. Used when changes are made to native exports. Auto-generates
constants.ts
,functions.ts
,types.ts
, andvariables.ts
withinlib/bindings/
npm run tsc
Compiles Typescript within
lib/
and outputs it todist/
Usenpm run dev
to put Typescript compiler into watch mode.
npm run test
Runs all tests in
test/
using nodeunit. Usenpm run test -- -t TEST_NAME
to run a specific test.
npm run docs
Generates
docs/
using Typedoc
FAQs
libxml bindings for v8 javascript engine
The npm package libxmljs receives a total of 52,230 weekly downloads. As such, libxmljs popularity was classified as popular.
We found that libxmljs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.