
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
@dbl-works/csv-unique-values
Advanced tools
A script to get unique values from columns in any CSV file.
Our use case is to run this script to populate in-app dropdowns with all possible values, but there's plenty more you can do with it, for example if you want to remove duplicates from a list of e-mails or phone numbers, …
Pull in this repository locally, then run
Usage: node index.js [options]
Options:
-v, --version output the version number
-i, --input <file> input CSV file
-d, --delimiter <delimiter> delimiter used in the CSV (default: ",")
-c, --columns <columns> columns to extract, comma-separated
you can get unique values per unique values from another column by
chaining them together using `::`
(default: all columns)
-o, --output <directory> output destination, will create a file per column
--no-sort don't sort unique values
-h, --help display help for command
If we publish this to NPM, it'd be
npx @dbl-works/csv-unique-values [options]
For an example input file team.csv
Name, Country, Region
Joe, US, NA
Joelle, US, NA
John, CA, NA
Johan, DE, EU
Johanna, DE, EU
and running
npx @dbl-works/csv-unique-values --input team.csv --keys country --output ~/Desktop/team-country
will generate country.json
with contents
[
"CA",
"DE",
"US"
]
To get all countries per region you can run:
npx @dbl-works/csv-unique-values --input team.csv --keys region::country --output ~/Desktop/team-country
and you will get:
{
"NA": [
"CA",
"US",
],
"EU": [
"DE"
]
}
FAQs
Get unique values from a CSV file
The npm package @dbl-works/csv-unique-values receives a total of 2 weekly downloads. As such, @dbl-works/csv-unique-values popularity was classified as not popular.
We found that @dbl-works/csv-unique-values demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.