Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
xml2mongo is an Express middleware that imports any XML feed and writes it to a MongoDB
By Oceanhouse21
xml2mongo imports any XML feed and save its objects to a MongoDB. xml2mongo is built as middleware for express.
Features:
Install xml2mongo
npm install xml2mongo --save
Add the module to your Express app, configure the module, and use as middleware:
var xml2mongo = require('xml2mongo');
var config = {
db: 'mongodb://localhost/xml2mongo', // name of db
schema: 'Import', // name of import schema
model: { company: String, url: String, description: String, title: String, updatedAt: String } // model of import schema
};
var feed =
{ url: 'http://myfeed.de/feed.atom',
mapping: [ { source: 'entries[i].author[0].name[0]', target: 'company' }, { source: 'entries[i].id[0]', target: 'url' } ]
};
router.use('/import', xml2mongo(config, feed));
// the next middleware has req.records available
router.user('/import', function (req, res, next) {
res.send(200, 'Imported ' + req.records.length + ' records.'
});
MIT License. Copyright 2014-2015 Oceanhouse21 GmbH. http://www.oceanhouse21.com
You are not granted rights or licenses to the trademarks of Oceanhouse21 GmbH, including without limitation the xml2mongo name.
FAQs
xml2mongo is an Express middleware that imports any XML feed and writes it to a MongoDB
The npm package xml2mongo receives a total of 1 weekly downloads. As such, xml2mongo popularity was classified as not popular.
We found that xml2mongo 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.