What are the functional differences between NW.js, Brackets-Shell and Electron?

HtmlNode WebkitElectronBrackets Shell

Html Problem Overview


Now that TideSDK is effectively dead, I've been looking into alternative 'wrappers' to run HTML/CSS/JS applications as stand-alone desktop applications. The three viable options I have run across so far, are NW.js (formerly node-webkit), brackets-shell, and Electron (formerly atom-shell).

The problem is that there does not appear to be a sufficiently complete comparison between the three in terms of feature set, compatibility, etc. I'm hoping to turn this into a more-or-less canonical thread on the (objective) differences between the three, in particular regarding:

  • Platform support; operating systems, dependencies, etc.
  • Language feature support, as far as HTML5, CSS3 and JavaScript are concerned. Think things like "does HTML5 video work, and if yes, what codecs are available?"
  • Non-standard extra features, such as tray icons, popup notifications, and OS-rendered menu bars.
  • Extensibility; eg. ability to 'plug in' native code, talk to Node.js, and so on.
  • Architecture; in particular the architectural differences that affect daily usage as a developer.
  • Debugging; included development tools, compatibility with commonly used tools like node-inspector, etc.
  • ... and so on.

What are the objective, technical differences that matter when making a choice between them as an application developer?

Html Solutions


Solution 1 - Html

I did similar research about two months ago, and in the end I went with node-webkit. The biggest upside on node-webkit is node.js and npm. The package management of npm is really nice, and node has well done filesystem access.

Brackets-shell looked interesting, but other than a nice IDE I didn't really get what made this one as good or better than the rest. They are very clear that "The brackets-shell is only maintained for use by the Brackets project ", that screams run away to me.

https://github.com/adobe/brackets-shell#overview

Atom-shell seems to be recently active, but it seems much like brackets in that they are really writing and editor/IDE that just happens to be attached to a webkit runtime. It also is built on top of node.js. This one has the downside of being difficult to search for stuff online without being reminded of your middle school chemistry.

I really don't want an new editor, and most programmers have their favorite already. For the actual application development, they pretty much work the same, and should, since they all use webkit. You basically write 90-95% of it like a website, and then deal with the native parts, and some config.

These things are true for all three of them platforms - runs on Windows, Mac, and Linux language support - HTML5, CSS3 and Javascript : since they run javascript you can download and run nearly any library/framework that you want.

The big caveat on webkit is codec support. Typically you will have problems with non-free video codecs, unless you rebuild the dll/so to support them. For example the shipped node-webkit won't play mp4 video.

Solution 2 - Html

I've been playing with [Atom-Shell][1] over the last few days, and I am loving it so far.

The best part about it is that it's backed by GitHub.. which should allow you to settle into the platform for the long term, especially if it gains a large following. It's also made possible by direct Node.js improvements courtesy of a contract with [StrongLoop][1], who is a major Node.js contributor (they claim to employ more Node.js core developers than any other company, even Joyent).

I've also found it rather comfortable to get started. It took me about a day to learn the structure and get my first proof of concept running. Very cool.


Bullet Points:
  • Platform support: Windows, Linux, Mac OSX ([More Info Here][3])
  • Language feature support: HTML5, CSS3, JS via Chromium - so far, zero issues, but I have not tested video specifically.
  • Native Features: Native App Menus, Task Tray Support, Global Hotkeys, Protocol Handler Support (that I've seen so far)
  • Extensibility: Excellent Node.js integration, both the client and server can "require" Node.js modules and natives. I've also successfully tested [Bower][4] libraries (incl jQuery) without issue.
  • Architecture: Covered in the other points, but in general its very smooth.

Update (11/25/14): I've not yet found use case for Atom-Shell in any official capacity, but I have used it to build a few small apps for my own use, the most complex being an app that pulls my time logs from my PM software and creates Paypal invoices.

My opinion of the platform remains positive. It's pretty awesome.

On my time invoicing app I successfully brought in Bootstrap 3's [Dashboard Example Template][5] and a few node modules (bluebird, Paypal SDK, Teamwork PM Client) to create a mildly complex app. It took me a few days and does its job well.

I really cannot think of anything negative to say about Atom-Shell, its solid, stable, fast, and easy to code for. I hope this helps someone.

[1]: https://github.com/atom/atom-shell "atom-shell" [2]: http://strongloop.com/ "StrongLoop" [3]: https://github.com/atom/atom-shell/releases "Atom-Shell Releases" [4]: https://bower.io "Bower" [5]: http://getbootstrap.com/examples/dashboard/ "Dashboard"

Solution 3 - Html

Besides fully support Web standards, NW.js supports a list of non-standard features for native app development including:

There is much more to see in the wiki including Menu, Tray, etc.

Solution 4 - Html

I've been working with brackets-shell for some time now, here are some of my findings:

  • brackets-shell is primarily developed as a shell under the brackets IDE project, but the project can run any web application. You just need to point it to your own html page. Clint Berry wrote an excellent tutorial about doing just this: http://clintberry.com/2013/html5-desktop-apps-with-brackets-shell/

  • The project is backed by Adobe and has a lot of activity

  • Documentation could be better

  • platform support They support Windows, Mac and Linux. An installer package can also be created. I only tested it on Win and Mac, it works great.

  • feature support html5, css3, js. Html5 video does not work out of the box, but is very easy to enable (by default the ffmpegsumo.dll is not copied into the installer, if you change the script to copy it it will work).

  • native features menu bar, 'open file with', file system access. I am not using any of these, as all I need is the communication with the node process.

  • extensibility a nodejs is built in, and you can communicate with node from your web application. In this way, you can use node to access the filesystem etc.

  • architecture The project is well set up, keeping a nice separation between the shell project and your own web app running inside it. In your own application, a global appshell object is available which gives you access to the brackets functionality (filesystem access, communication with node process, ...).

Solution 5 - Html

One thing to note (if you care), is that the Electron officially does not support Windows Vista. Vista's market share is about halfway between OSX 10.9 and 10.10 (both of which are fully supported by Electron). Vista is also still supported by Microsoft until 2017.

NW.js works fine in Vista, as well as OSX 10.9+. NW.js works on Ubuntu, Debian, Zorin, Manjaro, Arch, and most other Debian based Linux OS's. Electron has refused PR's to fix Ubuntu specific bugs on their platform which is concerning.

NW.js works in XP too. Currently 18% of the market is still on XP. So if you're desktop application is more general purpose or wants to have access to the late adopters still on XP, you're probably better off with NW.js (0.14.7) as Electron only supports Win 7 and up.

If you use NW.js 0.12.3 you can also support OSX 10.6+ and very old versions of Debian based Linux OS's like Ubuntu, and Win XP+. It is recommended that you do special builds just for those legacy systems though and use the newer versions of NW.js for newer OS's.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSven SlootwegView Question on Stackoverflow
Solution 1 - HtmlJohn W. ClarkView Answer on Stackoverflow
Solution 2 - HtmlLuke ChaversView Answer on Stackoverflow
Solution 3 - HtmlRoger WangView Answer on Stackoverflow
Solution 4 - HtmlKarel BraeckmanView Answer on Stackoverflow
Solution 5 - HtmlJaredcheedaView Answer on Stackoverflow