Security News
RubyGems.org Adds New Maintainer Role
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.
moddle-xml
Advanced tools
Read and write XML documents described with moddle.
Get the libray via npm
npm install --save moddle-xml
Create a moddle instance
var Moddle = require('moddle'),
ModdleXML = require('moddle-xml');
var model = new Moddle([ myPackage ]);
Use the reader to parse XML into an easily accessible object tree:
var model; // previously created
var xml =
'<my:root xmlns:props="http://mypackage">' +
'<my:car id="Car_1">' +
'<my:engine power="121" fuelConsumption="10" />' +
'</my:car>' +
'</my:root>';
var reader = new Reader(model);
var rootHandler = reader.handler('my:Root');
// when
reader.fromXML(xml, rootHandler, function(err, cars, context) {
if (err) {
console.log('import error', err);
} else {
if (context.warnings.length) {
console.log('import warnings', context.warnings);
}
console.log(cars);
// {
// $type: 'my:Root',
// cars: [
// {
// $type: 'my:Car',
// id: 'Car_1',
// engine: [
// { $type: 'my:Engine', powser: 121, fuelConsumption: 10 }
// ]
// }
// ]
// }
}
});
Use the writer to serialize the object tree back to XML:
var model; // previously created
var cars = model.create('my:Root');
cars.get('cars').push(model.create('my:Car', { power: 10 }));
var options = { format: false, preamble: false };
var writer = new ModdleXML.Writer(options);
var xml = writer.toXML(bar);
console.log(xml); // <my:root xmlns:props="http://mypackage"> ... <my:car power="10" /></my:root>
MIT
FAQs
XML import/export for documents described with moddle
The npm package moddle-xml receives a total of 38,938 weekly downloads. As such, moddle-xml popularity was classified as popular.
We found that moddle-xml demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 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
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.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.