Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Modified entry point to align with the package name. Installing jsnetworkx places the entry point in node_modules/jsnetworkx/jsnetworkx.js. As a result, I changed "main": "node/index.js" to "main": "jsnetworkx.js" in package.json.
I also updated the Lodash dependency to 4.17.21 as Lodash versions before 4.17.21 are vulnerable to Command Injection via the template function.
Potential issues
When I imported the package into my react component via;
import * as jsnx from "jsnetworkx";
And hover over "jsnetworkx" There is a warning message which may or may not be problematic;
"Could not find a declaration file for module 'jsnetworkx'. 'c:/Users/joshm/Desktop/Coding/CS50W/Final Project/AlgorithmVisualizer/frontend/node_modules/jsnetworkx/jsnetworkx.js' implicitly has an 'any' type.
Try
npm i --save-dev @types/jsnetworkx
if it exists or add a new declaration (.d.ts) file containingdeclare module 'jsnetworkx';
ts(7016)"Even with this occurring, I am having zero problems so far with the updated version.
Here is an image of my projects import to node_modules for reference;