calpine-node/examples/excel2json/README.md

31 lines
564 B
Markdown
Raw Normal View History

2021-03-29 17:57:52 +07:00
# Excel 2 Json
- Read file excel to json
- Custom mapping with custom columns
# Build
```shell
bash build
```
OR
```shell
make build run
```
# Example
```shell
docker run -v /my/path:/app/data --rm -it cubetiq/node-excel2json
```
```shell
docker run -v /home/sombochea/excel2json:/app/data -e APP_NAME="EXCEL 2 JSON" -e MAPPER_FILE="./data/mapper.json" --rm -it cubetiq/node-excel2json
```
# Environment
```env
APP_NAME=custom app name
INPUT_FILE=./data/mydata.json
OUTPUT_PATH=./data/outputs
MAPPER_FILE=./data/mapper.json
2021-03-29 18:35:49 +07:00
SHEET_NAME=Sheet1
ENCODING=utf-8
2021-03-29 17:57:52 +07:00
```