mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
1.3 KiB
1.3 KiB
Contribute
This file should introduce you with the concepts and tools used in this project.
PDF Library Docs
Adding a PDF Operation
StirlingPDF aims to support as many types of operations as possible, including some that cannot be executed in the client. Because of this, we have decided to move some of the shared functionality into it's own node module so that it can be shared by both client and server.
Adding a shared (server + client) operation
- Add the code for the operation to a new file in the functions folder.
NOTE: all functions in these files use dependency injection (see existing functions for examples).
Explanation: Because the server and client import libraries in different ways, we import the library as needed in the wrapper module, then pass into the a operation function as a parameter.
- Now that we have the function code, we need to tell the other modules that it exists. Edit the server operations and the client operations files to add your new operation! (Try to follow existing patterns where possible, keep the added operations in alphabetical order in the files).
Adding a server only operation
WIP