Go to file
Sambo Chea 338d2033bb Updated build and fixed entry pint 2021-03-30 12:05:29 +07:00
.github/workflows Updated build and fixed entry pint 2021-03-30 12:05:29 +07:00
bin Add cli support and updated functions 2021-03-30 11:21:58 +07:00
data Fixed the ouput and variable and updated function 2021-03-30 11:47:54 +07:00
.gitignore Add excel2json function and updated custom mapper from props 2021-03-30 09:16:11 +07:00
build.sh Add excel2json function and updated custom mapper from props 2021-03-30 09:16:11 +07:00
Dockerfile Updated the entrypoint for docker runtime 2021-03-30 12:04:18 +07:00
excel2json.d.ts Add cli support and updated functions 2021-03-30 11:21:58 +07:00
excel2json.js Fixed the ouput and variable and updated function 2021-03-30 11:47:54 +07:00
index.js Fixed the ouput and variable and updated function 2021-03-30 11:47:54 +07:00
LICENSE Initial commit 2021-03-30 08:40:56 +07:00
Makefile Updated build and fixed entry pint 2021-03-30 12:05:29 +07:00
package.json Fixed the ouput and variable and updated function 2021-03-30 11:47:54 +07:00
README.md Add cli support and updated functions 2021-03-30 11:21:58 +07:00
util.js Add cli support and updated functions 2021-03-30 11:21:58 +07:00

excel2json

Node.js Package Docker CI

  • Read file excel to json
  • Custom mapping with custom columns and configs
  • Custom props

Install

npm i excel2json-xlsx

OR

yarn i excel2json-xlsx

OR Global Install

yarn add global excel2json-xlsx

Usage

excel2json-xlsx -i people.xlsx -o exported.json

Build

bash build

OR

make build run

Example

docker run -v /my/path:/app/data --rm -it cubetiq/node-excel2json
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

Mapper Config

{
  "data": [
    {
      "dataIndex": "Name",
      "label": "Name"
    },
    {
      "dataIndex": "Age",
      "label": "Age"
    }
  ],
  "configs": {
    "outputPath": "./data/outputs/exported",
    "outputName": "my_exported_data",
    "sheetName": "Sheet1",
    "saveToOutput": true
  }
}

Custom Function Props

{
    mappings: [
        {
            "dataIndex": "Name",
            "label": "Name"
        }
    ],
    saveToOutput: false
}

Environment

APP_NAME=custom app name
INPUT_FILE=./data/mydata.xlsx
OUTPUT_PATH=./data/outputs
MAPPER_FILE=./data/mapper.json
SHEET_NAME=Sheet1
ENCODING=utf-8