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