
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
xml-writer2
Advanced tools
Native and full Javascript implementation of the classic XMLWriter class
It's native and full javascript implementation of the classic XMLWriter class. The API is complete, flexible and tolerant. XML is still valid.
With npm do:
$ npm install xml-writer2
const XMLWriter = require("xml-writer2");
const xw = new XMLWriter();
xw.startDocument();
xw.startElement("root");
xw.writeAttribute("foo", "value");
xw.text("Some content");
xw.endDocument();
console.log(xw.toString());
Output:
<?xml version="1.0"?>
<root foo="value">Some content</root>
Tip: If you want your XML indented use new XMLWriter(true)
or new XMLWriter('\t')
, for instance, if you want to use a custom string for indentation.
var XMLWriter = require("xml-writer2");
xw = new XMLWriter();
xw.startDocument()
.startElement("root")
.writeAttribute("foo", "value")
.writeElement("tag", "Some content");
console.log(xw.toString());
Output:
<?xml version="1.0"?>
<root foo="value"><tag>Some content</tag></root>
var XMLWriter = require("xml-writer2");
xw = new XMLWriter();
xw.startElement("root").writeAttribute("foo", "value").text("Some content");
console.log(xw.toString());
Output:
<root foo="value">Some content</root>
var XMLWriter = require("xml-writer2"),
fs = require("fs");
var ws = fs.createWriteStream("/tmp/foo.xml");
ws.on("close", function () {
console.log(fs.readFileSync("/tmp/foo.xml", "UTF-8"));
});
xw = new XMLWriter(false, function (string, encoding) {
ws.write(string, encoding);
});
xw.startDocument("1.0", "UTF-8")
.startElement(function () {
return "root";
})
.text(function () {
return "Some content";
});
ws.end();
Output:
<?xml version="1.0" encoding="UTF-8"?>
<root>Some content</root>
Use nodeunit to run the tests.
$ npm install nodeunit
$ nodeunit test
Create an new writer
Write text
Write a raw XML text
Create document tag
End current document
Write full element tag
Write full namespaced element tag
Create start namespaced element tag
Create start element tag
End current element
Write full attribute
Write full namespaced attribute
Create start namespaced attribute
Create start attribute
End attribute
Writes a PI
Create start PI tag
End current PI
Write a DocType
Create start DocType tag
End current DocType
Write full CDATA tag
Create start CDATA tag
End current CDATA
Write full comment tag
Create start comment
Create end comment
FAQs
Native and full Javascript implementation of the classic XMLWriter class
The npm package xml-writer2 receives a total of 0 weekly downloads. As such, xml-writer2 popularity was classified as not popular.
We found that xml-writer2 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.