<p dir="ltr"><br>
On 23 May 2013 03:39, "llanitedave" <<a href="mailto:llanitedave@veawb.coop">llanitedave@veawb.coop</a>> wrote:<br>
><br>
> On Wednesday, May 22, 2013 7:24:15 AM UTC-7, Chris Angelico wrote:<br>
> > On Wed, May 22, 2013 at 11:42 PM, Wolfgang Keller <<a href="mailto:feliphil@gmx.net">feliphil@gmx.net</a>> wrote:<br>
...<br>
> > there's another option that is available to every platform and<br>
> > (practially) every high level language: the web browser. Make your app<br>
> > serve HTTP and do up your UI in HTML5/CSS3 - your facilities are<br>
> > pretty extensive. Plus you get networking support for free! Obviously<br>
> > this option isn't for everyone, but don't discount it out of hand.<br>
> ><br>
> > ChrisA<br>
><br>
> I've been thinking about that myself for some future app ideas.  If you have a stand-alone app working from your web browser, don't you need an embedded web server to utilize the file system?  Is a system like Django for an app overkill?  Or is its embedded development server underkill for a single-user browser-based application?<br>

> --<br>
> <a href="http://mail.python.org/mailman/listinfo/python-list">http://mail.python.org/mailman/listinfo/python-list</a></p>
<p dir="ltr">JavaScript has this:</p>
<p dir="ltr"><a href="http://appjs.org/">http://appjs.org/</a></p>
<p dir="ltr">It's a node.js server app serving a folder of plain old HTML files to a chrome embedded browser. </p>
<p dir="ltr">You can code in a node.js server using anything you like, serve requests for your client app (or use the server code directly, you can just put the functions you would like to share with the client in the window object), etc. </p>

<p dir="ltr">I'm using it for a peer to peer configurable application. To do that I serve up the web application for me and my peers (by using a regular server instead of the fake server it comes with), and the browser is just a client which can connect wherever I want it to.</p>

<p dir="ltr">Someone should fork this and make it work in python.<br>
</p>