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.
@deck.gl/json
Advanced tools
@deck.gl/json is a package that allows you to create and configure deck.gl visualizations using JSON. This package is particularly useful for dynamically generating visualizations from JSON configurations, making it easier to integrate with various data sources and user interfaces.
Creating Deck.gl Layers from JSON
This feature allows you to define deck.gl layers using JSON. The example shows how to create a ScatterplotLayer with data points and their respective sizes.
{"layers": [{"type": "ScatterplotLayer", "data": [{"position": [-122.45, 37.78], "size": 100}], "getPosition": "d => d.position", "getRadius": "d => d.size"}]}
Configuring Deck.gl Views from JSON
This feature allows you to configure deck.gl views using JSON. The example shows how to create a MapView with a controller enabled.
{"views": [{"type": "MapView", "controller": true}]}
Using JSON to Define Deck.gl Props
This feature allows you to define various deck.gl properties using JSON. The example shows how to set the initial view state of the map.
{"initialViewState": {"longitude": -122.45, "latitude": 37.78, "zoom": 12, "pitch": 0, "bearing": 0}}
Kepler.gl is a powerful open-source geospatial analysis tool for large-scale data sets. It provides a user-friendly interface for creating complex visualizations without writing code. Compared to @deck.gl/json, kepler.gl offers a more comprehensive UI for data exploration and visualization.
React-map-gl is a React wrapper for Mapbox GL JS, providing a set of React components for integrating Mapbox maps into React applications. While it doesn't offer JSON-based configuration like @deck.gl/json, it provides a more React-centric approach to building map-based applications.
JSON support for deck.gl. Provides deck.gl classes that support specifying deck.gl layers and views (and their props) using a JSON format.
See deck.gl for documentation.
PoC: JSON layer browser built on new @deck.gl/json module.
[6.1.0-rc.1] - Aug 31 2018
FAQs
JSON format rendering components for deck.gl
The npm package @deck.gl/json receives a total of 126,031 weekly downloads. As such, @deck.gl/json popularity was classified as popular.
We found that @deck.gl/json 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.
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.