How can i run the editor in local

I download the three.js editor source code,but i dont know how to build and run it in my computer ,
what should I do?

1 Like

You can use XAMPP or any other server described here. :slight_smile:

When you download the official repository, you can also type npm i && npm start in the project’s directory which will run a local web server. You should then be able to open the editor via http://localhost:8080/editor/. However, you have to install node.js for this approach.

Besides, the npm i command is only required once to install the project’s dependencies.

1 Like

Thank you!I made it