Run three.js on the server using node.js, export the model to json and load it to end users via ajax

I have a JavaScript application with the requirement to protect the model's drawing interface so that it is not publicly accessible.

I want to use three.js on the server, save the model in JSON format and deliver it on the client side. It will display the file Three.js. But I do not know how to implement it on the server.

Are there any Node.js examples running three.js applications? If so, how do I save the grid in JSON format from the three.js file?

+4
source share
1 answer

But I do not know how to implement it on the server.

three modules

Are there any examples of Node.js that run three.js applications?

Yes

If so, how do I save the grid in JSON format from the three.js file?

module with three objects

+2
source

All Articles