mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
26cdb1d04f
Frontend traverser needs to be updated
18 lines
758 B
Markdown
18 lines
758 B
Markdown
# Contribute
|
|
|
|
This file should introduce you with the concepts and tools used in this project.
|
|
|
|
## PDF Library Docs
|
|
- [pdf-lib](https://pdf-lib.js.org) - js
|
|
- [pdfcpu](https://pdfcpu.io) - go-wasm
|
|
|
|
## Adding a PDF Function
|
|
|
|
In order to add a PDF-Function there are several files that need to be changed. If the function is on the backend only, or on only on the frontend, you just need to add it to one of the locations. If it is available on both, you need to update both locations.
|
|
Dependency Injection is used to accomodate for different imports across platforms.
|
|
|
|
### Backend
|
|
|
|
Backend functions can have different implementations than their frontend counterparts if neccesary. Otherwise they can just link to their frontend implementation.
|
|
|
|
### Frontend |