Convert CSV file to HTML table
npm install htmlify-csv
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
``