Using Javascript Libraries in Code Studio Processors

I’m currently trying to put together a processor in code studio to extract GPS coordinates from the EXIF metadata of images.

I found a library which can do this (https://github.com/MikeKovarik/exifr), however I can’t find a way to make this library code available to a code studio processor.

I recognise that this could be achieveable by building a widget and uploading the library as a .js file to it’s file repo, however I ideally want this to be a processor so it can be done server-side.

So my question is, is there a way we can use Javascript libraries within code studio processors?

I have looked at exactly this use case (i.e extracting gps info from images) before! It is still on my todo list, but the only way currently you can add library code is to copy / paste it into your processor - and it was the sheer volume of code that put me off!