Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
node-xml-lite
Advanced tools
npm install node-xml-lite
xml = require("node-xml-lite");
xml.parseFile(filename, function(err, root){
...
});
xml.parseFileSync(filename));
xml.parseString("<xml>hello</xml>");
xml.parseBuffer(new Buffer("<xml>hello</xml>"));
xml.SAXParseFile(filename,
function(state, a, b) {
switch (state) {
case xml.xtOpen:
// a is node name
...
break;
case xml.xtClose
...
break;
case xml.xtAttribute:
// a is attribute name
// b is attribute value
...
break;
case xml.xtText:
// a is a text value
break;
case xml.xtCData:
// a is a CDATA text value
...
break;
case xml.xtComment
// a is a comment text value
...
break;
};
// tell the parser to continue
return true;
},
function(err){
// parser done, check error
...
}
);
you can also use the sync function,
xml.SAXParseFileSync(filename, event)
var parser = new xml.XMLParser();
var ret = parser.parserBuffer(buffer, len, event);
if (ret === true) {
// stopped by event result
} else
if (ret === false) {
// there is a parsing error at:
// parser.line
// parser.col
} else
if (ret === undefined) {
// it is ok, continue ...
}
you can also parse a string
var ret = parser.parseString(str, event);
FAQs
Pure javascript XML ANSI/Unicode SAX parser for Node.js
The npm package node-xml-lite receives a total of 1,632 weekly downloads. As such, node-xml-lite popularity was classified as popular.
We found that node-xml-lite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.