Run a node.js server from Geany
问题 A simple question: Is it possible to configure the Geany IDE so that Node.js servers can be run directly from Geany using the "Run" button? 回答1: When inside a JS file, go to Build > Set Build Commands , there should be a section title Execute commands . To use node to execute your files, put: node "%f" in the "Execute" command textbox. When you change this, any .js files you are editing will run node in the virtual terminal when you hit F5 . If you want to set up an entire project to run the