Live data from Hacker News

Ask HN: Small apps ideas to learn Node.js?

news.ycombinator.com

1–10 of 15 posts

Re: Ask HN: Small apps ideas to learn Node.js?

#6

I'd suggest using Express.js node.js framework: it gets you up and running quickly. Trying to so something with websockets is fun as well and indicative of the (realtime) future of web apps.

Websockets are a lot of fun - maybe something like collaborative paint or some kind of multiuser game?

On a side note, anyone know of projects using nodejs in production?

Re: Ask HN: Small apps ideas to learn Node.js?

#7
post #6

I'd suggest using Express.js node.js framework: it gets you up and running quickly. Trying to so something with websockets is fun as well and indicative of the (realtime) future of web apps.

Websockets are a lot of fun - maybe something like collaborative paint or some kind of multiuser game? On a side note, anyone know of projects using nodejs in production?

GitHub use it for their download server - try running wget against one of the URLs they provide for downloading a tarball, you'll see it redirect to nodeload.github.com, hang for a few seconds (while they generate the file) and then redirect you to the download location.

http://github.com/blog/678-meet-nodeload-the-new-download-se...

http://transloadit.com/ are the most interesting Node.js startup I've seen.

Re: Ask HN: Small apps ideas to learn Node.js?

#8
How about a dead simple document sharing website that lets people read the same doc, on multiple computers, at the same time? (i.e. if you have a bunch of people on a call with computers up, the speaker can send around a reading link that lets him or her flip pages for everyone viewing.) I find myself wishing for this functionality pretty regularly lately. Broadcasting the pointer, real time comments & annotations seem cool too.

Re: Ask HN: Small apps ideas to learn Node.js?

#9
post #6

I'd suggest using Express.js node.js framework: it gets you up and running quickly. Trying to so something with websockets is fun as well and indicative of the (realtime) future of web apps.

Websockets are a lot of fun - maybe something like collaborative paint or some kind of multiuser game? On a side note, anyone know of projects using nodejs in production?

I'm currently making a multiplayer shooter game for node knockout!

It's not currently very impressive, but I hope it will be in about 21 hours :) I might submit to HN depending on how well it turns out.

Re: Ask HN: Small apps ideas to learn Node.js?

#10
post #2

How about a web chat program, with long polling? Fairly simple, and fun.

I can second this as a good way of learning. The Node.js site links to a very readable long polling chat app here: http://github.com/ry/node_chat. I learned the framework by modifying this into an IRC-style party game am now working on mobile clients for it.
Post reply on HN