so i just started out with threejs and ive been watching as to how to load models onto the platform so people can view them,
well, i watched a video and i learned on how to import texttures and to export them out.
well, after i did that, the youtube video said that i needed to download a converter for obj to js which i did download via the github from mr. doob.
Havent seen the tutorial myself obviously, but the index.html is selfmade. Probably he made a file called index.html in which he includes the needed ThreeJS files. In that same code you put / render your canvas et cetera.
What I did (and is a better way I beleve, not sure though) is export everything to glTF. I think that is kinda the “new standard” for this stuff.
I’m a beginner myself so I am not sure if my answer is 100% correctly, but it doesnt kill you to check out the exporter haha, maybe it will help you
And as said, make your own index.html and use tags to include the needed TreeJS JS files and write your code to load your model in that file too and that is all you need.
I wrote my own editor in 3 files.
index.html
style.css
scripts.js
I can view any model, and do real-time changes like switching the background color, switching speed on which animations are run, switch to normal view or wireframe view, and some other things.
The workflow presented in the video is actually not up to date since all python scripts are now removed. I suggest you directly load your OBJ file with OBJLoader. There is a very suitable example for your use case that shows how to load an OBJ with the respective MTL. Use the code of the following example as your personal index.html.