Ask HN: What is the best JavaScript stack for a beginner to learn?
31–40 of 61 posts
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#32Another great resource is You Might Not Need jQuery (http://youmightnotneedjquery.com/). Take what you need, leave the bloat behind!
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#33Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#34My 2c: stay away from any complex framework until you have a really good understanding of the language itself. Learn the DOM APIs with all it's drawbacks and bugs, DOM events, standalone browser APIs like Canvas, Audio, etc. Write simple node apps with express and modules whose sources you can read. Start using lightweight libraries like underscore / Backbone - you'll come to understand many of the issues that plague…
So if anyone's reading this and feeling bad that they don't feel like doing that, just dive in and do something fun. The longer you spend learning, the more likely you are to pick up all of those important details anyway.
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#35If your friend's a total beginner, though, then it's better to just learn vanilla js for now.
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#36My 2c: stay away from any complex framework until you have a really good understanding of the language itself. Learn the DOM APIs with all it's drawbacks and bugs, DOM events, standalone browser APIs like Canvas, Audio, etc. Write simple node apps with express and modules whose sources you can read. Start using lightweight libraries like underscore / Backbone - you'll come to understand many of the issues that plague…
That sounds like the most boring possible way to learn webdev. Unless they're already a programmer, those things just aren't entertaining for most people. Making sure a beginner stays entertained is probably the most important goal, because people who get bored will give up before realizing their full potential. So if anyone's reading this and feeling bad that they don't feel like doing that, just dive in and do some…
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#37An essential that might be obvious but in case he missed is that learning JS is much easier in the developer console. If you want to experiment with underscore, go to http://underscorejs.org/, hit cmd-i/f12 and type in _.map([1, 2, 3], function (x) { return x * 2; }); or if you want to understand moment, go to http://momentjs.com and type moment().fromNow(); in the console -- the library objects are available there and this makes it really fast to try things out.
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#38http://backbonejs.org/docs/backbone.html
If you don't understand all of that, probably learn more javascript.
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#39My 2c: stay away from any complex framework until you have a really good understanding of the language itself. Learn the DOM APIs with all it's drawbacks and bugs, DOM events, standalone browser APIs like Canvas, Audio, etc. Write simple node apps with express and modules whose sources you can read. Start using lightweight libraries like underscore / Backbone - you'll come to understand many of the issues that plague…
Re: Ask HN: What is the best JavaScript stack for a beginner to learn?
#40I've enjoyed working with riot.js ( https://muut.com/riotjs/ ). It's a "minimalist" front end framework, written in vanilla javascript. It's easy to pick up, and it's not super opinionated. You can read/absorb the library in one sitting -- so you'll have a good sense of what's going on under the hood. Another great resource is You Might Not Need jQuery ( http://youmightnotneedjquery.com/ ). Take what you need, leave…