
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
react-simple-network-graph
Advanced tools
This package contains React components that render network graphs. It exports two components:
<NetworkGraph />
, which will render a static network graph; and<DynamicNetworkGraph />
, which will render a dynamic graph, with draggable vertices and a numerical simulation that adjusts the vertex positions until an optimised edge length is obtained.The package is not optimised for the display of huge networks. However, its has minimal dependencies (just React, @babel/runtime and prop-types) and is very lightweight. Both the visual display of the graphs and the movement of the dynamic graph can be customised.
See the project website: https://andypea.github.io/react-simple-network-graph
The components exported by this package are React components. You can use them within your existing React app or create a new one.
Once you have created your React app install the react-svg-stars package:
npm install react-simple-network-graph
or
yarn install react-simple-network-graph
Once installed, you can import and use the NetworkGraph
or DynamicNetworkGraph
component within your app:
import { DynamicNetworkGraph } from 'react-simple-network-graph';
...
<DynamicNetworkGraph
width={400}
height={400}
vertices={[
{ id: "Gacrux", label: "Gacrux", fill: "yellow", position: { cx: 200, cy: 100 }, },
{ id: "Mimosa", label: "Mimosa", fill: "white", position: { cx: 100, cy: 150 }, },
{ id: "Acrux", label: "Acrux", fill: "white", position: { cx: 200, cy: 250 }, },
{ id: "Imai", label: "Imai", fill: "white", position: { cx: 300, cy: 125 }, },
{ id: "Ginan", label: "Ginan", fill: "lightblue", position: { cx: 240, cy: 250 }, },
]}
edges={[
{ id: "GacruxAcrux", source: "Gacrux", target: "Acrux", length: 300 },
{ id: "MimosaImai", source: "Mimosa", target: "Imai", length: 200 },
]}
/>
...
See the project website: https://andypea.github.io/react-simple-network-graph
Releases of this package can be found on its NPM page: https://www.npmjs.com/package/react-simple-network-graph
See docs/developer_docs.md
.
[0.2.0] - 2023-05-26
FAQs
A react component for interactive network graph diagrams.
The npm package react-simple-network-graph receives a total of 3 weekly downloads. As such, react-simple-network-graph popularity was classified as not popular.
We found that react-simple-network-graph 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.