Hello,
I have just installed Sublime to run Javascript.
I followed these post and set a JavaScript.sublime-build with the lines
{
"cmd": ["node", "$file"],
"selector": "source.js"
}
and this post with the lines
{
"cmd": ["/usr/bin/node", "$file"], # the location of my installation of node
"selector": "source.js"
}
I then selected Tools>Buil system> JavaScript
. When I build a line the terminal appears at the bottom of the screen but it doesn’t show anything.
How can I display the output of the terminal on Sublime?
Thank you