Live data from Hacker News

Ask HN: Can you suggest some good JavaScript projects to read and learn?

news.ycombinator.com

1–10 of 49 posts

Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?

#4
This game is a tool for experimentation - it gave me motivation to start learning. You need to write the control software for an elevator (or elevators), which has levels of increasing difficulty to clear, which will mean re-evaluating and rewriting your code to perform better under different scenarios.

http://play.elevatorsaga.com/

Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?

#6
I wanted to make HTML5 games. So I searched and eventually came across an open-source "Catch the demon" game[1]. I studied it and some other Javascript code, and modified the game to take mouse input instead of keyboard[2]. You might be able to make better modifications, or even a better game!

[1]www.lostdecadegames.com/how-to-make-a-simple-html5-canvas-game/

[2]http://gilgamech.neocities.org/demon.html

Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?

#9
ExpressJS is pretty interesting with its nested routers, middleware, request handling function as the app, and adjusting the prototype on each request.

It gets kind of hairy so I did a blog post on it: http://www.nickstefan.net/blog/view/express-under-the-hood

Post reply on HN