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

Package detail

filefy

mbrn271.9kMIT0.1.11TypeScript support: included

A javascript library to produce downloadable files sucs as in CSV, PDF, XLSX, DOCX formats

javascript, file, export, csv, pdf, xlsx

readme

filefy

Build Status npm package NPM Downloads Follow on Twitter

A javascript library to produce downloadable files such as in CSV, PDF, XLSX, DOCX formats

Only CSV export is available for now!

Installation

To install filefy with npm:

npm install --save filefy

To install filefy with yarn:

yarn add filefy

Usage

import { CsvBuilder } from 'filefy';

var csvBuilder = new CsvBuilder("user_list.csv")
  .setColumns(["name", "surname"])
  .addRow(["Eve", "Holt"])
  .addRows([
    ["Charles", "Morris"],
    ["Tracey", "Ramos"]
  ])
  .exportFile();

Licence

This project is licensed under the terms of the MIT license.