top | item 4366555

Browserver: a node.js HTTP server, in your browser

308 points| jedschmidt | 13 years ago |browserver.org

63 comments

order
[+] arturadib|13 years ago|reply
TL;DR: This is a proxy server that routes HTTP requests from a unique subdomain (e.g. http://m7rp3u2ntr9t3xr.browserver.org) to a browser that's visiting browserver.org. The JavaScript in the browser then handles the HTTP response. This is possible thanks to a persistent connection between the browser and browserver.org, via some "websocket-like" protocol.

The title "node.js HTTP server, in your browser" is because the HTTP handler in the client (browser) has a Node-like API, see:

https://github.com/jed/browserver-client#example

[+] jedschmidt|13 years ago|reply
Thank you for explaining this much better than I did!
[+] jedschmidt|13 years ago|reply
Hey all,

I put browserver together in my free time over the last week. It's still a bit of a toy, but I think it's useful to explore ideas around extending webhooks all the way to the browser, to simplify our increasingly complicated web architectures.

It's already late here in Tokyo, but I'll be up for a bit if anyone wants to chat/brainstorm about approaches like this (and also to make sure the server stays up).

[+] madrobby|13 years ago|reply
I'm slightly disappointed that it's implemented in more than 140 bytes.

Keep on being awesome. :)

[+] shurane|13 years ago|reply
Simple statement: stop being so cool.

On a related note, keep at it. I hope you go places.

And where/how did you get the idea?

Things like this make me wonder why I'm not having fun creating neat (and useful!) things.

[+] HerraBRE|13 years ago|reply
Hey! I am doing something very similar with PageKite (http://pagekite.net/), although the server does not run in a browser.

I've decided to try to get authors of similar tools together on a mailing list to discuss whether we can agree on a common protocol so our clients/servers (connectors/relays, backends/frontends) can be interoperable. Join us: http://mailman.klaki.net/mailman/listinfo/revprotun

[+] javajosh|13 years ago|reply
I had this idea, too, the killer application is actually demos and talks, I think. The speaker sets up their browser server, asks the audience to hit a URL, and then demonstrates in real time aspects of the system.

It's also a very neat way to bring WebKit Inspector to bear on server style code. Glad you did it! I presume that you have a wildcard subdomain at the DNS level and then some Node parsing magic to correctly proxy. Why subdomains though? Why not just a tag like browserver.com/29adfija02 ?

[+] wamatt|13 years ago|reply
This does sound sort of interesting, but after thinking about it I don't get why this is cool. Can someone explain a practical use case?

How is it different, in practice, from say running a Node.JS on localhost and using localtunnel?

[+] quarterto|13 years ago|reply
Simple question: how the fuck?
[+] ericz|13 years ago|reply
I find this title rather misleading. There is no node.js HTTP server in your browser. Meaning, you cannot do anything that is part of Node.js in the browser "server"

The browser is still running its original js engine with none of the Node goodies. It merely receives proxied requests, does some stuff to it, then sends it back to the proxy, which returns it to the client.

[+] jedschmidt|13 years ago|reply

    It merely receives proxied requests, does some stuff to it, then sends it back to the proxy, which returns it to the client.
You just described the majority of the web servers that we web developers deal with. Sure, it's a proxy, but the fact that the machine responding is connected via WebSocket and not a local network doesn't make it any less of a server, in my opinion.
[+] arunoda|13 years ago|reply
Nice attempt. But your title is misleading.

You just listen for a URL and forward it to the browser with socket.io (Pusher, Pubnub are some commercial services for this)

If I can change some content in your webpage by just curling localhost, I can judge the title you put :)

[+] e12e|13 years ago|reply
So, it's not a new take on POW (plain old webserver): https://addons.mozilla.org/en-us/firefox/addon/pow-plain-old... which apparently have been abandoned, and could use a fork (source at: http://davidkellogg.com/pow/ )?

Apparently there's a newer variation at:

  https://addons.mozilla.org/en-US/firefox/addon/browser-server/
and of course there's Opera's Unity.

I do get that the idea is that it "just" uses javascript (the server appears to be down, so I'm actually guessing) -- but when such projects already exist, I kind of expected more...

[+] shurane|13 years ago|reply
So he still needs to host something that forwards information to the browser? Shucks.
[+] jedschmidt|13 years ago|reply
Indeed, this isn't entirely original, and I know services like this exist. To me, this is what PUSHER's API _should_ have been.
[+] aba_sababa|13 years ago|reply
I don't really see why this is special. It's just a websocket connection that happens to show every request made to the server. Your browser is not a server, no matter which way you cut it.
[+] andrewmunsell|13 years ago|reply
Sure it is. Yes, the web socket connection is passing through requests to the browser-server, but that browser-server is the one responding.
[+] state|13 years ago|reply
I think there's a ton of unrealized potential in this kind of thinking. Although people will say 'But that was done by X a year ago!' I see that as evidence that this is gaining momentum.

Now, what's the project that will fully take advantage of this kind of thing?

[+] shaunxcode|13 years ago|reply
A lot of times it is about coming up with the right terminology and positioning of an idea for it to "take off". This is a really nice approach in that it utilizes concepts/a paradigm we are already comfortable with.
[+] Xurinos|13 years ago|reply
My hope is an answer to this problem that is so easy that my computer-phobic grandmother can do it: https://xkcd.com/949/
[+] VikingCoder|13 years ago|reply
...I'm looking forward to WebRTC, which should make this obsolete, right?

http://www.webrtc.org/

That said, this is cool!

[+] jmspring|13 years ago|reply
Webrtc is about realtime communications. This is about exposing webhooks clientside.
[+] Kilimanjaro|13 years ago|reply
Just add a text area and let people share some html. Now that would be cool!

Change some HTML in that text area and refresh automatically in all listeners.

That would be an interesting toy to play for a while.

[+] sehrope|13 years ago|reply
Anyone know if browserver.org is self hosting (i.e. running on some guys desktop/laptop in a browser window)? Site is down at the moment and I'm wondering if this is why.
[+] jedschmidt|13 years ago|reply
Ha, tinco beat you to that joke. The server is the smallest instance that Joyent offers right now... hopefully it'll hang in there during the HN rush.
[+] alan_cx|13 years ago|reply
Ok so I can access it either, but:

Loading the app... If this message doesn't go away within 10 seconds, it means that the server crashed under heavy load. Please refresh mercilessly.

:)

[+] rip_kirby|13 years ago|reply
If you look at the favicon, there's two of them faviconception
[+] sharps_xp|13 years ago|reply
I do not understand what is going on.
[+] debacle|13 years ago|reply
And they're down.

It was a good 15 minutes, though.

[+] tinco|13 years ago|reply
I bet they closed their window >_>