使用 sheetjs,文档:https://docs.sheetjs.com/docs/getting-started/installation/nodejs
👇👇 将 json 数据 👇👇
[
{ "name": "张三", "age": 18 },
{ "name": "李四", "age": 20 }
]
👇👇 转换为 Excel 文件,格式如下 👇👇
name | age |
---|---|
张三 | 18 |
李四 | 20 |
pnpm i
- 生成测试数据
pnpm init:data
- 将 json 数据转换为 excel
pnpm build
output.xlsx