Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- duckdb
- 三井住友カード
- 釜つる
- terraform
- 熱海
- PostgreSQL
- pyenv
- Python
- 프라하
- typescript
- codebuild
- PayPay
- 미츠이 스미토모
- 카마츠루
- react.js
- javascript
- 방콕
- 메르페이
- 체코
- JenkinsFile
- node.js
- Selenium
- documentdb
- vba
- 아타미
- 뮌헨
- 페이페이
- 태국
- CSV
- local
Archives
- Today
- Total
목록convert-excel-to-json (1)
도쿄사는 외노자
Excel파일에서 JSON을 불러와 재구성하기
node.js 툴에서 excel파일을 json으로 불러와, 데이터를 만들어야 했다. 일단 원본이 되는 엑셀 파일은 다음과 같다. 이걸 convert-excel-to-json으로 불러와서 재구성한다. 코드는 다음과 같다. const excelToJson = require('convert-excel-to-json'); // 엑셀 파일 const input_form_file = '../data/example.xlsm'; function getDataSheet(){ const excel_sheets = excelToJson({ sourceFile: input_form_file, header: { rows: 3 // 필요없는 줄을 자를 수 있다 }, // 원하는 시트만 골라서 뽑아내기 sheets: ['stock..
Tech/JavaScript
2019. 12. 17. 12:09