Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
rethink2csv
Advanced tools
This module allows for an easy way to create a clean, properly-escaped CSV document stream from any RethinkDB query. In order for this to work correctly, you must be using the rethinkdbdash module--it will not work using the "official" driver since the official driver does not support streaming results.
npm install rethink2csv
Licensed under MIT: http://www.opensource.org/licenses/mit-license.php
This quick example shows how to create a CSV file from a RethinkDB query.
var fs = require('fs');
var file = fs.createWriteStream('/some/location/db_dump.csv');
var rdb = require('rethinkdbdash')();
var r2c = require('rethink2csv')();
var query = rdb.table('data').order_by({index: 'created_on'}).filter({{active: true}});
r2c.generate_csv(query, file);
The module uses the csv-write-stream module to create clean escaped CSV streams. You can pass any option supported by this module using the csv
property:
var r2c = require('rethink2csv')({
csv: {
separator: ',',
newline: '\n',
headers: false,
sendHeaders: false
}
});
Got a missing feature you'd like to use? Found a bug? Go ahead and fork this repo, build the feature and issue a pull request.
FAQs
Allows you to stream any query from rethinkdb to a CSV file.
The npm package rethink2csv receives a total of 1 weekly downloads. As such, rethink2csv popularity was classified as not popular.
We found that rethink2csv 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.