Skip to content

Converts a CSV file into an HTML table very easily!

License

Notifications You must be signed in to change notification settings

shevabam/htmlify-csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Install

Clone this repository:

git clone [email protected]: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
Param Description Default Example
--delimiter CSV delimiter , --delimiter=";"
--output Output filename datas/output.html --output="file.html"
--show Open HTML output file in browser false
--port Server port number 8090 --port=1337

Credits

About

Converts a CSV file into an HTML table very easily!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published