본문 바로가기
Node.js

[Node.js] XLSX 파일 JSON 파일로 만들기

by yonikim 2021. 5. 26.
728x90

1. xlsx 라이브러리 다운로드

$ npm install xlsx

 

2. XLSX 파일 JSON 으로 파싱하기

const xlsx = require('xlsx')

const workbook = xlsx.readFile(__dirname + '/source.xlsx')
const sheetName = workbook.SheetNames[0]

const result = xlsx.utils.sheet_to_json(workbook.Sheets[sheetName])

console.log(result)

 

3. 해당 데이터 JSON 파일로 쓰기

const fs = require('fs')

fs.writeFile('result.json', JSON.stringify(result))

 

728x90