node_extra_ca_certs_mozilla_bundle icon indicating copy to clipboard operation
node_extra_ca_certs_mozilla_bundle copied to clipboard

feat: use fast-csv

Open thibault-lr opened this issue 4 months ago • 0 comments

Replace csvtojson with fast-csv

The csvtojson package has a known vulnerability (GHSA-vrw9-g62v-7fmf) that causes issues with npm audit and other security scanning tools.

This PR replaces csvtojson with fast-csv, which is:

  • More actively maintained
  • No known security vulnerabilities
  • Drop-in replacement with minimal code changes

Changes:

  • Updated package.json to use fast-csv instead of csvtojson
  • Modified CSV parsing logic in index.js to use fast-csv's API
  • Maintained exact same functionality and output format

thibault-lr avatar Oct 06 '25 08:10 thibault-lr