Live data from Hacker News

Ask HN: Examples of applications built with Node.js?

news.ycombinator.com

1–10 of 22 posts

Re: Ask HN: Examples of applications built with Node.js?

#5
Here's a little Node.js/CoffeeScript application I worked on for a contest at a conference:

Site: http://apiplayground.org

Source: http://github.com/jashkenas/api-playground/blob/master/src/a...

The source is interesting because it demonstrates something that you can't do easily with a regular Rails/Django app: nonblocking asynchronous calls to remote APIs, with synchronous responses to the ajax request.

Re: Ask HN: Examples of applications built with Node.js?

#9
Here's an offline-capable web application and underlying "network-straddling" framework running on Node:

https://szpil.com

Node is great for handling many concurrent clients. It extends the V8 interpreter with excellent low-level APIs: Posix, Tcp, Http, DNS. If you need to share Javascript code between client and server, Node is the best server-side Javascript environment you could choose to use.

Post reply on HN