
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mapbox-vector-tile
Advanced tools
This library reads Mapbox Vector Tiles and allows access to the layers and features.
It is based on @mapbox/vector-tile with the following differences:
@mapbox/point-geometry,protobuf-ts to decode protos,Feature.asPoint(), Feature.asLine(), Feature.asPolygon() to make it easier to work with geometries.npm i --save mapbox-vector-tile
import { VectorTile } from 'mapbox-vector-tile';
// data is either a Buffer or a Uint8Array containing binary data.
const tile = new VectorTile(data);
// Contains a map of all layers
tile.layers;
const landuse = tile.layers.landuse;
// Amount of features in this layer
landuse.length;
// Returns the first feature
landuse.feature(0);
VectorTile.0.3.0 - Oct 22, 2020
FAQs
Parses mapbox vector tiles
The npm package mapbox-vector-tile receives a total of 382 weekly downloads. As such, mapbox-vector-tile popularity was classified as not popular.
We found that mapbox-vector-tile 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.