Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools oft miss.
Implements a Node Transport Stream. Takes a readable stream of OSM XML and outputs a stream of JSON in the following format:
{
"attrs": {
"changeset": "50",
"id": "29",
"lat": "38.9003573",
"lon": "-77.0232578",
"timestamp": "2013-09-05T19:38:11Z",
"version": "1"
},
"tags": [
{
"k": "amenity",
"v": "place_of_worship"
}
],
"type": "node"
}
{
"type": "way",
"attrs": {
"id": "3",
"version": "3",
"timestamp": "2013-09-05T19:38:11Z",
"changeset": "49"
},
"nodes": [{
"ref": "19"
}, {
"ref": "20"
}, {
"ref": "21"
}, {
"ref": "22"
}, {
"ref": "26"
}, {
"ref": "27"
}],
"tags": [{
"k": "name",
"v": "York St"
}]
}
##Example
var fs = require('fs')
, Osm2Json = require('../lib/osm2json');
var rs = fs.createReadStream('./test.osm');
var osm2Json = new Osm2Json();
rs.pipe(osm2Json).pipe(process.stdout);
0.0.1 - 2013-09-26
FAQs
Converts an OSM XML file to OSM JSON objects as a transform stream
The npm package osm2json receives a total of 1 weekly downloads. As such, osm2json popularity was classified as not popular.
We found that osm2json 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools oft miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.