When I make my html page and I want to show my page using Web Browser like Chrome, Firefox etc.
so, Is it possible to execute web browser in Atom?
How to execute Browser in atom?
kyungkoo
#1
You can use Child Process from node.js to call the open
command. It would look something like this
childProcess = require('child_process')
childProcess.exec "open #{url}", (error, stdout, stderr) ->
console.error(error) if error
kyungkoo
#5
Thanks! @AbeEstrada That’s what I wanted!
But, when I tested, this package can’t read AngularJS.
v3ss0n
#6
Both of those packages are broken now.
We need a maintained package of it. I suck and realy hate coffee script . all APIs are in coffee script tho.
trusktr
#7
We should make Atom a super awesome IDE+Browser combo. Imagine configuring everything about your browsing experience in Atom since we already dev in it…
Or does that exist already?
It’s possible, certainly. browser-plus
offers a plugin system, so it might (I haven’t tried) not be hard to expand its functionality.