Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've searched a bit but can't find an existing tool for this.

I have a node.js web server that is designed to run on your own computer that does some snazzy things for you. It would be pretty aswesome if I could double click MySnazzyThing.app instead of installing nodejs, and npm and running node mysnazzyapp.js on the command line.

The .app executable would spool up the node server and open a simple native webkit window which would show what would normally be on localhost:3000 if I were running on the command line.

This native app could then, say, be distributed through the mac app store. And bam, a node.js desktop app.

Does any such tool exist? Or are there any technical reasons that this wouldn't work as I imagine it?

share|improve this question

5 Answers

up vote 5 down vote accepted

You can accomplish this using AppJS: http://appjs.org

share|improve this answer

Option 1: AppJS

Probably the most polished option available today.


Option 2: node-webkit

The gist is that it basically extends the JS engine for you to write a web-based app supporting node's extended object model, and modules... you then package your package.json start.html modules and js files into a zip (with the .nw extension) and run it with nw(.exe) .. there are windows, mac and linux builds available.


Option 3: XULRunner

Although not NodeJS per-se, it is another option for having an HTML (XUL/HTML) based option that is JS driven. This will not include everything that the above options include, but still may be worth looking at.


Updated: includes a broader answer.

share|improve this answer
For OSX and Linux github.com/crcn/nexe also looks like a solution. – robocat Mar 12 at 2:53

I suggest looking into Topcube, it's goal is to "Give node developers a way to have a desktop GUI to their node servers using HTML5 + CSS3 as the GUI platform." Topcube at github.

share|improve this answer
1  
Topcube doesn't seem to be supported much longer – Shamoon Nov 16 '11 at 16:53
Yes, i suggest looking into Titanium. It's not Node.js but is JS based and cross platform for PC and mobile application development. appcelerator.com/products/… – Brian Heese Dec 13 '11 at 12:00
That Titanium link has rotted. I suppose this one is what you're referring to: docs.appcelerator.com/titanium/2.0/index.html Their opaque marketing-heavy website sure does make it hard to see what their product is, or to care. – Grumdrig Apr 25 '12 at 21:41
Note: The Titanium desktop parts are not going to be developed/supported anymore. – sri Oct 6 '12 at 15:32
Titanium Desktop development has been taken up over by a new group of developers: tidesdk.org – Motin Nov 26 '12 at 10:52

To answer the quesion... No I don't think this is currently possible unless you create your own solution. But there is interest and development. I think Windows will likely come last until node.js doesn't require cygwin.

There seems to be a lot of interest and buzz about this approach for the future. One of the major issues seems to be getting node.js to run with less dependencies (cygwin) in windows.

Like Brian Heese mentioned, a project with a lot of promise is TopCube (webkit + node.js).

Maybe using Google's Native Client could yield a solution.

I think the best way to implement this, would be to have one portable package that includes an enhanced CEF based application (for more input control, bindings, etc), as well as a server package that operates separately. They could communicate over the network (using loopback).

Related interesting discussions on the subject (integrating webkit/chromium with node.js for desktop application development): http://groups.google.com/group/nodejs/browse_thread/thread/f90b3f1c747d20b3 http://magpcss.org/ceforum/viewtopic.php?f=10&t=467

share|improve this answer
1  
This is possible now by appjs.org – Morteza M. May 8 '12 at 16:34

Can't you do this with a bash script? I don't know enough to provide the details, but that's probably the way to go.

share|improve this answer
1  
The point here is to package up the webserver and the UI itself into a standalone application that doesn't even run in your browser but it's own app window. A bash script would only give me a macro to run the server then open my browser to its port, but that's not the same thing at all. – Alex Wayne Aug 2 '11 at 0:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.