A WIP CSV viewer element.
git clone git://github.com/shama/csv-viewer &&cd csv-viewer npm i npm startVisit http://localhost:9966
https://shama.github.io/csv-viewer
varviewer=require('csv-viewer')// Get some CSV datavarcsv=[['Name','Address','Phone'],['Grizzly','123 Fake St','707-123-4567'],]// Build the element and attach to pagevarelement=viewer(csv)document.body.appendChild(element)