I am facing a challenge with my server where I do not have the ability to run npm due to lack of permissions, and only have access to Apache.
Currently, I am in need of a JavaScript library that is typically deployed using npm, such as https://github.com/stevage/mapbox-gl-utils. Unfortunately, there is no traditional JS script available that includes everything I require, and can be referenced directly in my HTML.
While I was able to use npm locally on my own laptop (where I have necessary permissions), now I am left with a complex structure of interdependent folders containing JS and JSON files. These files seem to only function within an npm server environment.
At the moment, I have not come across a single JS file that contains all the necessary components for the library I need.
Is there a way to integrate the required JS into my standard HTML (served on Apache) without relying on npm? Or is it inevitable that I must utilize npm for this task?