1.0.2 • Published 5 years ago

htmlify-csv v1.0.2

Weekly downloads
28
License
MIT
Repository
github
Last release
5 years ago

htmlify-csv.js

This NodeJs module converts a CSV file into an HTML table very easily!

The HTML table generated allows you to filter the columns and sort them.

npm.io

Install

Clone this repository:

git clone git@github.com:shevabam/htmlify-csv.git
cd htmlify-csv

Then run:

npm install

Usage

Converts example.csv into HTML file, located in datas folder:

node htmlify-csv convert example.csv

Add some options to define the delimiter and to open the generated HTML file in your Web browser:

node htmlify-csv convert example.csv --delimiter=";" --show

Converts datas/example.csv to datas/example.html width ";" delimiter, and open output file in your Web browser:

node htmlify-csv convert "datas/example.csv" --delimiter=";" --output="datas/example.html" --show

Options

To view all available options, use:

node htmlify-csv --help
ParamDescriptionDefaultExample
--delimiterCSV delimiter,--delimiter=";"
--outputOutput filenamedatas/output.html--output="file.html"
--showOpen HTML output file in browserfalse
--portServer port number8090--port=1337

Credits