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.
ol-react-renaud009
Advanced tools
A thin wrapper for OpenLayers3 in React.
The goal is to be able to write applications using OpenLayers maps in a declarative way. For example, the following is JSX, which can be returned by the render() method on a React component, to generate a map with a red square near the equator.
<Map view=<View resolution={10000} center={[0, 0]}/>>
<layer.Tile>
<source.MapQuest layer="osm" />
</layer.Tile>
<layer.Vector>
<source.Vector>
<Feature style={{stroke: {color: [255, 0, 0, 1]}}}>
<geom.LineString>
{[[0, 0], [100000, 0], [100000, 100000], [0, 100000]]}
</geom.LineString>
</Feature>
</source.Vector>
</layer.Vector>
</Map>
To understand what each element does, read the OpenLayers API documentation.
It's early days! If you're familiar with react and/or openlayers and are interested in helping, please get in touch. Available on github and npm.
FAQs
React interface for openlayers
The npm package ol-react-renaud009 receives a total of 0 weekly downloads. As such, ol-react-renaud009 popularity was classified as not popular.
We found that ol-react-renaud009 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.
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.