Skip to content

air-cc/json-xlsx-simply

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-xlsx-simply

translate json to xlsx simply

Usage

const jsonToXLSX = require('json-xlsx-simply').jsonToXLSX

const filePath = 'demo.xlsx'
const jsonData = [
  {name: 'a', age: 1, description: 'a'},
  {name: 'b', age: 1, description: 'b'},
  {name: 'c', age: 1, description: 'c'},
]
const opts = {
  sheetName: 'person',                    // defalut: sheet
  head: ['person-name', 'person-age'],   // default: all keys name
  fields: ['name', 'age'],                // default: all keys value
}

jsonToXLSX(filePath, jsonData, opts)
  .then(()=> {
    // done and you will get a xlsx file in the file path
  })

About

translate json to xlsx simply

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published