All Projects → mbrn → filefy

mbrn / filefy

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

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to filefy

Pyetl
python ETL framework
Stars: ✭ 33 (-15.38%)
Mutual labels:  export, excel
Yii2 Export
A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)
Stars: ✭ 153 (+292.31%)
Mutual labels:  export, excel
Excellentexport
Javascript export to Excel
Stars: ✭ 1,018 (+2510.26%)
Mutual labels:  export, excel
Simple Excel
Read and write simple Excel and CSV files
Stars: ✭ 502 (+1187.18%)
Mutual labels:  export, excel
sense-export
Just a simple button to export data in your Qlik Sense applications.
Stars: ✭ 28 (-28.21%)
Mutual labels:  export, excel
Laracsv
A Laravel package to easily generate CSV files from Eloquent model
Stars: ✭ 583 (+1394.87%)
Mutual labels:  export, excel
Poi Tl
Generate awesome word(docx) with template
Stars: ✭ 2,306 (+5812.82%)
Mutual labels:  export, word
VBA-Import-Export
Export & Import VBA code for use with Git (or any VCS)
Stars: ✭ 14 (-64.1%)
Mutual labels:  export, excel
Office365FiddlerExtension
This Fiddler Extension is an Office 365 centric parser to efficiently troubleshoot Office 365 client application connectivity and functionality.
Stars: ✭ 23 (-41.03%)
Mutual labels:  excel, word
vue-datagrid
Spreadsheet data grid component. Handles enormous data processing.
Stars: ✭ 171 (+338.46%)
Mutual labels:  export, excel
Npoi.mapper
Use this tool to import or export data with Excel file. The tool is a convention based mapper between strong typed object and Excel data via NPOI.
Stars: ✭ 348 (+792.31%)
Mutual labels:  export, excel
flutter filereader
Flutter实现的本地文件(pdf word excel 等)查看插件,非在线预览
Stars: ✭ 101 (+158.97%)
Mutual labels:  excel, word
sheet2dict
Simple XLSX and CSV to dictionary converter
Stars: ✭ 206 (+428.21%)
Mutual labels:  export, excel
Tableexport
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files.
Stars: ✭ 781 (+1902.56%)
Mutual labels:  export, excel
Samples-NET.Core-MVC-CSharp
ASP.NET Core 2.0 MVC C# samples for Stimulsoft Reports.Web reporting tool.
Stars: ✭ 28 (-28.21%)
Mutual labels:  export, excel
Revogrid
Powerful virtual data grid smartsheet with advanced customization. Best features from excel plus incredible performance 🔋
Stars: ✭ 1,870 (+4694.87%)
Mutual labels:  export, excel
excel mysql
Module for import Excel files to MySQL table and export MySQL table to Excel file using PHPExcel
Stars: ✭ 30 (-23.08%)
Mutual labels:  export, excel
Samples-ASP.NET-MVC-CSharp
ASP.NET MVC C# samples for Stimulsoft Reports.Web reporting tool.
Stars: ✭ 31 (-20.51%)
Mutual labels:  export, excel
Portphp
Data import/export framework for PHP
Stars: ✭ 225 (+476.92%)
Mutual labels:  export, excel
Samples-JS-PHP
JavaScript and PHP samples for Stimulsoft Reports.PHP reporting tool.
Stars: ✭ 17 (-56.41%)
Mutual labels:  export, excel

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].