Search code examples
javascriptreactjsweb-applicationsreact-redux

React library vulnerability and risk


Hello I recently installed react-redux and saw on my console after it was downloaded that there were vulnerabilities low and high. What does this mean? Should I uninstall it?


Solution

  • Npm installer include audit system of scanning your project for vulnerabilities. You can try to run this command to automatically fix vulnerabilities, maybe it will update version of react-redux or some dependencies

    npm audit fix
    

    You can try to read this answer https://stackoverflow.com/a/50574347/4459474