
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
csv-to-pouch
Advanced tools
Parse CSV files and save their data to a PouchDB database.
function parseCSVFile<T>(
db: PouchDB.Database<T>,
input: NodeJS.ReadableStream,
transformer?: (row: any) => T,
): Promise<void>
Parse CSV data from the input stream and save it to the PouchDB database.
Each row is saved as a seperate PouchDB document. If the _id
prexists in
the database, the existing document will be updated with the new version
and the revision version will change.
fs.createReadableStream('data.csv')
row
represents the CSV data, and the returned object will be used as a
PouchDB document.Examples:
csv-to-pouch http://localhost:5984/mydb < data.csv
csv-to-pouch --db http://localhost:5984/mydb -i data.csv
csv-to-pouch /path/to/mydb < data.csv
csv-to-pouch http://localhost:5984/mydb -u myUsername -p myPassword < data.csv
Options:
--db URL or filepath to database
-i, --input CSV file path. Can also pipe from stdin.
-h, --help Show help text
-u, --username Username for password-protected database
-p, --password Password for password-protected database
FAQs
Parse CSV files and save their data to a PouchDB database.
The npm package csv-to-pouch receives a total of 1 weekly downloads. As such, csv-to-pouch popularity was classified as not popular.
We found that csv-to-pouch 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
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.