Ask HN: Can you suggest some good JavaScript projects to read and learn?
31–40 of 49 posts
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#32If you're looking for something harder and unconventional, see React source. It also has some low hanging fruit for pull requests.
If documentation and comments are important for you to learn, Backbone.js is way ahead of everyone else in those terms.
I would also look at smaller indie projects. The source is smaller, forking and adding something is easier. Pull requests are easier too.
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#33It's such a straight forward library to use and build stuff with - plus the code is very well annotated for anybody just starting out.
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#34https://github.com/hybridgroup/cylon-sphero because you can use it to control robots?
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#35Reflux 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 ).
You mentioned Reflux but linked to Redux.
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#36Reflux 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 ).
+1 for Dan (aka Gaearon) being an excellent developer
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#37Take a look at the d3.js source code
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#38I'm also interested to see a mid-size scale SPA project that has excellent unit-testing and integration-testing. I've read a lot about how JS can make programmer productive, I've also read a lot how code can be succinct and all that jazz because of JS, but I have _never seen_ a well-architected, well-documented, well-automated-tested non-todomvc SPA codebase. This isn't a sarcasm or criticism but a serious and legiti…
Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#39Re: Ask HN: Can you suggest some good JavaScript projects to read and learn?
#40http://addyosmani.com/resources/essentialjsdesignpatterns/bo...