
Security News
Happy Birthday, Shai-Hulud
It has been one year since Shai-Hulud made its first appearance on npm.
@rflukerii/docbot
Advanced tools
A lightweight, bidirectional data format transformer. Convert between CSV, JSON, and Markdown with a simple, chainable API.
npm install @rflukerii/docbot
const { csvToJson, jsonToCsv, jsonToMarkdown, csvToMarkdown } = require('@rflukerii/docbot');
const json = csvToJson("name,age\nAlice,30\nBob,25");
// [{ name: 'Alice', age: '30' }, { name: 'Bob', age: '25' }]
const csv = jsonToCsv([{ name: 'Alice', age: '30' }, { name: 'Bob', age: '25' }]);
// "name,age\r\nAlice,30\r\nBob,25"
const md = jsonToMarkdown([{ name: 'Alice', age: '30' }, { name: 'Bob', age: '25' }]);
// | name | age |
// | --- | --- |
// | Alice | 30 |
// | Bob | 25 |
const md = csvToMarkdown("name,age\nAlice,30\nBob,25");
// | name | age |
// | --- | --- |
// | Alice | 30 |
// | Bob | 25 |
| Function | Input | Output |
|---|---|---|
csvToJson(csvString) | CSV string | JSON array |
jsonToCsv(jsonArray) | JSON array | CSV string |
jsonToMarkdown(jsonArray) | JSON array | Markdown table |
csvToMarkdown(csvString) | CSV string | Markdown table |
MIT
FAQs
Bidirectional CSV <> JSON <> Markdown transformer
We found that @rflukerii/docbot demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Security News
It has been one year since Shai-Hulud made its first appearance on npm.

Research
/Security News
Operators behind PolinRider used a compromised GitHub account to plant malware in four development versions of a Packagist package with 700,000+ downloads.

Security News
GitHub Actions now supports cache-mode, a least-privilege control on the Actions cache aimed at the cache poisoning technique behind recent compromises.