|
I'm trying to fix a bug in the editor, and I'm following the setup in the guide, but when I do npm start, it just opens make.js and nothing happens. |
Answered by
xdan
Jun 26, 2026
Replies: 3 comments 9 replies
nvm use
npm ci
npm start? |
9 replies
|
I got a problem: https://stackoverflow.com/questions/32127524/how-to-install-and-use-make-in-windows |
0 replies
|
|
0 replies
Answer selected by
xdan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



npm startruns throughmake, and on Windows there's usually nomakeinstalled — so the OS just opensmake.jsin your editor instead of running it. Install GNU Make (e.g.choco install make, or use WSL / Git Bash), thennvm use && npm ci && npm startworks. That missingmakeis the whole issue.