Skip to content

Instantly share code, notes, and snippets.

@qutek
Created July 28, 2021 19:06
Show Gist options
  • Save qutek/f44ffa81518210604822b81121f0757b to your computer and use it in GitHub Desktop.
Save qutek/f44ffa81518210604822b81121f0757b to your computer and use it in GitHub Desktop.
Export csv javascript xlsx
const generateCSV = () => {
const wb = XLSX.utils.book_new()
const ws = XLSX.utils.json_to_sheet([{ a: 1, b: 2 }])
XLSX.utils.book_append_sheet(wb, ws, 'test')
XLSX.writeFile(wb, 'test.csv')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment