
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
dbgate-plugin-csv
Advanced tools
CSV import/export plugin for DbGate
Export from fake object reader into CSV file. Fake object file can be replaced with other reader/writer factory functions, as described in dbgate-api package
const dbgateApi = require('dbgate-api');
const dbgatePluginCsv = require("dbgate-plugin-csv");
dbgateApi.registerPlugins(dbgatePluginCsv);
async function run() {
const reader = await dbgateApi.fakeObjectReader();
const writer = await dbgatePluginCsv.shellApi.writer({ fileName: 'myfile1.csv', separator: ';' });
await dbgateApi.copyStream(reader, writer);
console.log('Finished job script');
}
dbgateApi.runScript(run);
Reads CSV file
const dbgatePluginCsv = require("dbgate-plugin-csv");
const reader = await dbgatePluginCsv.shellApi.reader({
fileName: 'test.csv',
encoding: 'utf-8',
header: true,
delimiter: ',',
quoted: false,
limitRows: null
});
Writes CSV file
const dbgatePluginCsv = require("dbgate-plugin-csv");
const writer = await dbgatePluginCsv.shellApi.writer({
fileName: 'test.csv',
encoding: 'utf-8',
header: true,
delimiter: ',',
quoted: false
});
FAQs
CSV import/export plugin for DbGate
The npm package dbgate-plugin-csv receives a total of 75 weekly downloads. As such, dbgate-plugin-csv popularity was classified as not popular.
We found that dbgate-plugin-csv demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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 News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.