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.
osm-p2p-api
Advanced tools
Functions for implementing the OSM API using osm-p2p-db.
This module sits between osm-p2p-db
and osm-p2p-server
. It provides
the logic that turns the data from an osm-p2p-db
into what the
osm-p2p-server
needs in order to satisfy the OSM
API.
We (Digital Democracy) are also using it for things like GeoJSON exports in Mapeo.
Work in Progress. API functions from osm-p2p-server
will be moved over
here incrementally as they are needed. Semver will be respected throughout the
move.
var osmApi = require('osm-p2p-api')
var osmP2p = require('osm-p2p-mem')
var osm = osmP2p()
var api = osmApi(osm)
var node = {
type: 'node',
lat: 14,
lon: -1
}
osm.create(node, function () {
var bbox = [-180, -85, 180, 85]
var stream = api.getMap(bbox, function (err, res) {
console.log(res)
})
})
outputs
[ { type: 'node',
lat: 14,
lon: -1,
id: '14932367278207151409',
version: '6b8042a175ba486961d3d11277c6a6e9c0f882da3036dcd1e68e96e3acc45a95' } ]
var osmApi = require('osm-p2p-api')
Constructs a new API object over the osm-p2p-db
instance osm
.
Get all OSM documents in the bounding box bbox
, which is of the form
var bbox = [minLon, minLat, maxLon, maxLat]
opts
, if provided, accepts the following properties:
opts.forks
(Boolean): whether to include forks of documents. Defaults to
false
.The callback cb
is also optional. If provided, results will be buffered and
returned via cb
. If no callback is given, the function returns a Readable
stream stream
.
With npm installed, run
$ npm install osm-p2p-api
This module was born from a great idea by @gmaclennan!
ISC
FAQs
Functions for implementing the OSM API using osm-p2p-db.
The npm package osm-p2p-api receives a total of 5 weekly downloads. As such, osm-p2p-api popularity was classified as not popular.
We found that osm-p2p-api 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
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.