mission.pdf-module
TypeScript icon, indicating that this package has built-in type declarations

0.0.5 • Public • Published

mio.pdf-maker

Pdf Maker based on the handlebar template.

Api Details

GET /liveness

{
    "data": true
}

GET /readiness

{
    "data": true
}

POST /pdfmaker/template

Request Payload:

{
    "data": {
        "template": "This is {{name}} template.",
        "data":{
            "name" : "mission.io"
        }
    }
}

Response Payload:

{
    "data": "This is mission.io template."
}
 

POST /pdfmaker/pdf

Request Payload:

{
    "data": {
        "template": "This is {{name}} template.",
        "data":{
            "name" : "mission.io"
        }
    }
}

Response Payload:

{
    "data": {
        "type": "Buffer",
        "data": [
            37,
          ...
            70,
            10
        ]
    }
}

Readme

Keywords

Package Sidebar

Install

npm i mission.pdf-module

Weekly Downloads

4

Version

0.0.5

License

MIT

Unpacked Size

15.3 kB

Total Files

29

Last publish

Collaborators

  • natarajanmca11