No description
Find a file
Dan Mestas 71b52f6c5e feat(api): implement OpenAPI/REST API for file conversions
- Add comprehensive REST API at /api/v1 with modular structure
- Implement authentication endpoints (register, login, logout, me)
- Add converter listing and format discovery endpoints
- Create job management and file download endpoints
- Add health check endpoint for monitoring
- Set up CORS support for browser-based API clients
- Create API middleware for JWT authentication
- Add environment variables for API configuration
- Include comprehensive API documentation and test script

Infrastructure:
- Enhanced CI/CD workflow for custom Docker registries
- Docker Compose setup with dev, prod, and monitoring profiles
- Claude.ai integration files for development workflow
- Environment-based configuration with .env.development

Known limitations:
- JWT authentication context needs fixing (using ALLOW_UNAUTHENTICATED=true)
- Swagger UI temporarily disabled due to composition error
- File upload endpoint needs multipart/form-data support

The API code is isolated in src/api/ directory to maintain separation
from the existing codebase, making it easy to maintain or contribute back.
2025-07-30 14:18:13 -05:00
.claude feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
.github feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
.vscode chore: format all files 2025-06-03 19:19:28 +02:00
images fix: wrong layout on search with few options 2024-09-26 23:37:19 +02:00
public Merge pull request #342 from Netzz0/FEAT/better-handling-of-multiples-files 2025-07-22 18:15:01 +02:00
src feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
.dockerignore refactor: split main file to pages 2025-06-03 15:04:18 +02:00
.env.development feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
.gitignore chore: update @elysiajs/static 2024-10-18 19:32:42 +02:00
API.md feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
biome.json chore: format all files 2025-06-03 19:19:28 +02:00
bun.lock feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
CHANGELOG.md chore(main): release 0.14.1 2025-06-04 10:48:18 +02:00
CLAUDE.md feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
compose.yaml Use a new env variable to determine whether the user ID should be set to 0 for unauthenticated users 2025-07-24 18:03:55 +02:00
docker-compose.README.md feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
docker-compose.yml feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
Dockerfile Add MSG to EML email conversion support (#367) 2025-07-24 18:08:19 +02:00
eslint.config.ts chore: format all files 2025-06-03 19:19:28 +02:00
IMPLEMENTATION_SUMMARY.md feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
knip.json chore: fix knip 2025-06-03 19:27:36 +02:00
LICENSE Create LICENSE 2024-05-24 23:28:00 +02:00
package.json feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
postcss.config.js chore: format all files 2025-06-03 19:19:28 +02:00
prettier.config.js chore: format all files 2025-06-03 19:19:28 +02:00
README.md chore: add commented http allowed variable 2025-07-27 11:00:41 +02:00
renovate.json chore: format all files 2025-06-03 19:19:28 +02:00
reset.d.ts chore: format all files 2025-06-03 19:19:28 +02:00
SECURITY.md chore: change security url 2025-03-09 21:07:04 +01:00
test-api.sh feat(api): implement OpenAPI/REST API for file conversions 2025-07-30 14:18:13 -05:00
tsconfig.json chore(deps): update @elysiajs/html to version 1.1.1 2024-10-18 18:53:45 +02:00

ConvertX

ConvertX

Docker ghcr.io Pulls Docker Pulls GitHub Release GitHub commits since latest release GitHub repo size Docker container size

C4illin%2FConvertX | Trendshift

A self-hosted online file converter. Supports over a thousand 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
libheif HEIF 2 4
XeLaTeX LaTeX 1 1
Calibre E-books 26 19
Pandoc Documents 43 65
dvisvgm Vector images 4 2
ImageMagick Images 245 183
GraphicsMagick Images 167 130
Inkscape Vector images 7 17
Assimp 3D Assets 77 23
FFmpeg Video ~472 ~199
Potrace Raster to vector 4 11

Any missing converter? Open an issue or pull request!

Deployment

Warning

If you can't login, make sure you are accessing the service over localhost or https otherwise set HTTP_ALLOWED=true

# docker-compose.yml
services:
  convertx:
    image: ghcr.io/c4illin/convertx
    container_name: convertx
    restart: unless-stopped
    ports:
      - "3000:3000"
    environment:
      - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset
      # - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection
    volumes:
      - ./data:/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.

Environment variables

All are optional, JWT_SECRET is recommended to be set.

Name Default Description
JWT_SECRET when unset it will use the value from randomUUID() A long and secret string used to sign the JSON Web Token
ACCOUNT_REGISTRATION false Allow users to register accounts
HTTP_ALLOWED false Allow HTTP connections, only set this to true locally
ALLOW_UNAUTHENTICATED false Allow unauthenticated users to use the service, 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
WEBROOT The address to the root path setting this to "/convert" will serve the website on "example.com/convert/"
FFMPEG_ARGS Arguments to pass to ffmpeg, e.g. -preset veryfast
HIDE_HISTORY false Hide the history page
LANGUAGE en Language to format date strings in, specified as a BCP 47 language tag
UNAUTHENTICATED_USER_SHARING false Shares conversion history between all unauthenticated users

Docker images

There is a :latest tag that is updated with every release and a :main tag that is updated with every push to the main branch. :latest is recommended for normal use.

The image is available on GitHub Container Registry and Docker Hub.

Image What it is
image: ghcr.io/c4illin/convertx The latest release on ghcr
image: ghcr.io/c4illin/convertx:main The latest commit on ghcr
image: c4illin/convertx The latest release on docker hub
image: c4illin/convertx:main The latest commit on docker hub

Release image size Dev image size

Tutorial

Note

These are written by other people, and may be outdated, incorrect or wrong.

Tutorial in french: https://belginux.com/installer-convertx-avec-docker/

Tutorial in chinese: https://xzllll.com/24092901/

Screenshots

ConvertX Preview

Development

  1. Install Bun and Git
  2. Clone the repository
  3. bun install
  4. bun run dev

Pull requests are welcome! See below and open issues for the list of todos.

Use conventional commits for commit messages.

Todo

  • Add options for converters
  • Add tests
  • Make errors logs visible from the web ui
  • Add more converters:

Contributors

Image with all contributors

Star History

Star History Chart