Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@deck.gl/extensions
Advanced tools
@deck.gl/extensions is a collection of extensions for the deck.gl library, which is used for creating high-performance, WebGL-powered visualizations. These extensions provide additional functionalities such as data filtering, 3D terrain, and advanced rendering techniques.
Data Filtering
The DataFilterExtension allows you to filter data points based on a specified range. This is useful for visualizing subsets of data dynamically.
const { DataFilterExtension } = require('@deck.gl/extensions');
const layer = new ScatterplotLayer({
data: myData,
getPosition: d => d.coordinates,
getRadius: d => d.radius,
getColor: d => d.color,
extensions: [new DataFilterExtension({filterSize: 1})],
filterRange: [0, 100]
});
3D Terrain
The TerrainExtension allows you to overlay 2D tiles on 3D terrain, providing a more realistic visualization of geographical data.
const { TerrainExtension } = require('@deck.gl/extensions');
const layer = new TileLayer({
data: 'https://tile-server.com/tiles/{z}/{x}/{y}.png',
minZoom: 0,
maxZoom: 23,
tileSize: 256,
renderSubLayers: props => new BitmapLayer(props),
extensions: [new TerrainExtension({terrainImage: 'https://terrain-server.com/terrain.png',
terrainBounds: [west, south, east, north]})]
});
Advanced Rendering
The BrushingExtension allows for interactive data brushing, where users can highlight and filter data points within a specified radius.
const { BrushingExtension } = require('@deck.gl/extensions');
const layer = new ScatterplotLayer({
data: myData,
getPosition: d => d.coordinates,
getRadius: d => d.radius,
getColor: d => d.color,
extensions: [new BrushingExtension()],
brushingRadius: 1000,
brushingTarget: [longitude, latitude]
});
Three.js is a popular JavaScript library for creating 3D graphics in the browser. While it provides a lower-level API compared to deck.gl, it offers extensive functionalities for 3D rendering, including support for various geometries, materials, and lighting effects.
Leaflet is a widely-used open-source JavaScript library for interactive maps. It is more focused on 2D map visualizations and offers a variety of plugins for additional functionalities, such as heatmaps and marker clustering. Unlike deck.gl, it does not natively support WebGL-based 3D visualizations.
D3.js is a powerful JavaScript library for producing dynamic, interactive data visualizations in web browsers. It uses SVG, HTML, and CSS to bring data to life. While it is not specifically designed for 3D or map visualizations, it is highly flexible and can be extended to create complex visualizations.
FAQs
Plug-and-play functionalities for deck.gl layers
The npm package @deck.gl/extensions receives a total of 134,931 weekly downloads. As such, @deck.gl/extensions popularity was classified as popular.
We found that @deck.gl/extensions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.