I am a beginner with nodejs. And I am writing a program, which convert text data from json file to pdf file: This is my input file (input.json)
{
"Info":
{
"Company": "ABC",
"Team": "JsonNode"
},
"Number of members": 4,
"Time to finish": "1 day"
}
And I want to convert it to a .pdf (report.pdf) file with following style.
Info
1.1 Company
ABC
1.2 Team
JsonNode
- Number of members 4
- Time to finish 1 day
My problems are:
1: How to change style from input.json file to style of report.pdf.
2: How to convert from .json format to .pdf format.
Could anyone help me.
Thanks in advance!