How would you run node app with sublime text? Like this, open the file app.js in sublime, go to menu->tools->build, and it just runs. Simple like that
To run nodejs on sublime text, install node package "node dev" then create a sublime text build, the code should look like this
{ "cmd": ["node-dev", "$file"], "selector" : "source.js", "path" : "/usr/local/bin" }
Now to run a nodejs app, go to menu->tools->build.