Skip to content

patrickfend/xlsx2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xlsx2json

Webservice to convert Excel-Files to JSON

Docker

$ docker pull ghcr.io/patrickfend/xlsx2json:latest

Usage

Just send the .xlsx-file via POST to the service and use the field name "excel"

<form action="http://127.0.0.1:3000" method="POST" enctype="multipart/form-data">
    <input type="file" name="excel">
    <input type="submit">
</form>

Example

The test.xlsx in the examples folder will be converted to:

{
	"sheet number one": [
		{
			"title A": "foo",
			"title B": "bar"
		},
		{
			"title A": "foo 2",
			"title B": "bar 2"
		}
	],
	"sheet number two": [
		{
			"title A": "FOO",
			"title B": "BAR"
		},
		{
			"title A": "FOO 2",
			"title B": "BAR 2"
		}
	]
}

About

Webservice to convert Excel-Files to JSON

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors