Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

simple-json-to-csv

kervin57MIT1.0.2

Simple JSON to CSV writter

json, csv, converter, parse

readme

This package was especially made for Bryan

const Converter = require("simple-json-to-csv");

const file = new Converter([
  { name: "Kervin", age: "26" },
  { name: "Daniel", age: "4" }
]);

file.convert("out/result.csv").then(console.log);