mirror of
https://github.com/C4illin/ConvertX.git
synced 2026-06-28 23:15:47 +00:00
c57b69991cac009fc24aa3acf3782fd7822495e0
the function used here, randmInt(Min, Max) has an issue.
When running the code, I get a 500 error, with the error being
```
| const newUserId = String(randomInt(2 ** 24, Number.MAX_SAFE_INTEGER));
^
RangeError: The "max - min" is out of range. It must be <= 281474976710655. Received 9007199237963775
code: "ERR_OUT_OF_RANGE"
at randomInt (native:1:1)
at /.../ConvertX/src/index.tsx:460:32
at /.../ConvertX/src/index.tsx:594:29
at file:///.../ConvertX/node_modules/elysia/dist/bun/index.js:76:22
```
When digging deeper in the implementation, it seems that the official node doc says :
> The range (max - min) must be less than 2**48. min and max must be safe integers.
See : https://nodejs.org/api/crypto.html#cryptorandomintmin-max-callback
Feel free to close this PR and do the fix another way (it: by using a uuid instead of randomInt, etc.)
ConvertX
A self-hosted online file converter. Supports 831 different formats. Written with TypeScript, Bun and Elysia.
Features
- Convert files to different formats
- Process multiple files at once
- Password protection
- Multiple accounts
Converters supported
| Converter | Use case | Converts from | Converts to |
|---|---|---|---|
| libjxl | JPEG XL | 11 | 11 |
| resvg | SVG | 1 | 1 |
| Vips | Images | 45 | 23 |
| XeLaTeX | LaTeX | 1 | 1 |
| Pandoc | Documents | 43 | 65 |
| GraphicsMagick | Images | 166 | 133 |
| FFmpeg | Video | ~473 | ~280 |
Any missing converter? Open an issue or pull request!
Deployment
# docker-compose.yml
services:
convertx:
image: ghcr.io/c4illin/convertx
container_name: convertx
restart: unless-stopped
ports:
- "3000:3000"
environment: # Defaults are listed below. All are optional.
- ACCOUNT_REGISTRATION=false # true or false, doesn't matter for the first account (e.g. keep this to false if you only want one account)
- JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() by default
- HTTP_ALLOWED=false # setting this to true is unsafe, only set this to true locally
- ALLOW_UNAUTHENTICATED=false # allows anyone to use the service without logging in, only set this to true locally
- AUTO_DELETE_EVERY_N_HOURS=24 # checks every n hours for files older then n hours and deletes them, set to 0 to disable
volumes:
- convertx:/app/data
or
docker run -p 3000:3000 -v ./data:/app/data ghcr.io/c4illin/convertx
Then visit http://localhost:3000 in your browser and create your account. Don't leave it unconfigured and open, as anyone can register the first account.
If you get unable to open database file run chown -R $USER:$USER path on the path you choose.
Tutorial
Tutorial in french: https://belginux.com/installer-convertx-avec-docker/
Screenshots
Development
- Install Bun and Git
- Clone the repository
bun installbun run dev
Pull requests are welcome! See below and open issues for the list of todos.
Todo
- Add messages for errors in converters
- Add searchable list of formats
- Add options for converters
- Divide index.tsx into smaller components
- Add tests
- Make the upload button nicer and more easy to drop files on. Support copy paste as well if possible.
- Make errors logs visible from the web ui
- Add more converters:
Contributors
Star History
Description
Languages
TypeScript
91.4%
JavaScript
4.7%
Dockerfile
2.6%
CSS
1.3%

