Ask HN: Can you suggest some good JavaScript projects to read and learn?
1–10 of 49 posts
No post body was provided.
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#2The same todo app implemented in a bunch of frameworks:
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#3BackboneJS is a really well-written library, even if it's now beginning to lose popularity. The source code is small enough that it should be easy to read and understand within a few weeks.
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#4This 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.
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#5Backbone and Underscore have annotated source code:
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#6I 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/
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#7I asked this before and I hope it helps https://news.ycombinator.com/item?id=8128400
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#8Backbone and Underscore have annotated source code: http://backbonejs.org/docs/backbone.html http://underscorejs.org/docs/underscore.html
+1 for Backbone. It is very well documented
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#9ExpressJS 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
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#10Reflux and it's associated tools for some concise, well written ES6/7 patterns (https://github.com/gaearon/redux)
Gaearon is actually a hell of a JS developer (https://github.com/gaearon).