Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

read excel file npm

import readXlsxFile from 'read-excel-file'

const input = document.getElementById('input')

input.addEventListener('change', () => {
  readXlsxFile(input.files[0]).then((rows) => {
    // `rows` is an array of rows
    // each row being an array of cells.
  })
})
Source by www.npmjs.com #
 
PREVIOUS NEXT
Tagged: #read #excel #file #npm
ADD COMMENT
Topic
Name
8+5 =