TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

JavaScript frameworks and topics to learn in 2017

202 pointsby kp25over 8 years ago

25 comments

dictumover 8 years ago
&gt; Webpack: The most popular bundler for standard JavaScript look for simple starter kit&#x2F;boilerplate config examples to get things running fast<p>Unless you&#x27;re already familiar with a tool, I&#x27;d suggest starting with the very <i>Hello, world</i> basics.<p>For Webpack, that&#x27;s creating an empty project and incrementally adding config, starting with just an entry point (use a simple script importing some modules) and an output filename. Add one loader&#x2F;plugin at a time. Move into boilerplates once you&#x27;re familiar with the basic concepts.<p>(I wish more projects had a Concepts page like Webpack now has: <a href="https:&#x2F;&#x2F;webpack.js.org&#x2F;concepts&#x2F;" rel="nofollow">https:&#x2F;&#x2F;webpack.js.org&#x2F;concepts&#x2F;</a>)<p>A boilerplate is another person&#x27;s code, and while it&#x27;s good to avoid NIH, unless it&#x27;s superbly documented, it contains tricks and workarounds that only cloud real understanding.<p>---<p>Eric wisely started the article with JavaScript &amp; DOM Fundamentals. For people like me, who were familiar with pre-ES6 JS but weren&#x27;t actively writing JS lately, the basics themselves have changed a bit.
评论 #13206517 未加载
评论 #13208148 未加载
评论 #13205552 未加载
eranationover 8 years ago
Learn programming, not just frameworks. Frameworks will come and go, but the core programming concepts (good design, algorithms, cleanliness, simplicity, data structures, architecture) will tend to stay relevant longer. Learn the principles of Reactive Programming, not just RXJs, learn the philosophy of Redux, not just its syntax. You won&#x27;t be able to keep up with it otherwise. Source: a guy who was an actionscript guru 15 years ago.
评论 #13204577 未加载
评论 #13204533 未加载
fenomasover 8 years ago
&gt; Learn [Vue.js] after you have learned React or Angular.<p>Hugely disagree with this. I really like Vue - but in my (very limited) experience, its appeal is that even though it&#x27;s not as powerful or flexible as React or Angular it&#x27;s <i>way</i> easier to learn and get moving with. Fewer new concepts, less new tooling, no ecosystem of related stuff to consider, etc.<p>I&#x27;d have suggested learning Vue first, and sticking with it until you outgrow it. If you start with Ng&#x2F;Rx, and get to where you&#x27;re comfortable and have a tooling&#x2F;workflow around them that works for you, then sure you could still learn Vue afterwards but I&#x27;m not sure what it gets you.
评论 #13206062 未加载
评论 #13206387 未加载
moxiousover 8 years ago
Yeesh. In fairness it&#x27;s a fine list, but you can be an excellent JavaScript developer and know less than one third of what&#x27;s on that list. Ambitious JS lifers maybe can get to most of that, but for people who value some breadth of knowledge across tech, I&#x27;m not sure even pursuing such a list is a good idea.
评论 #13204492 未加载
daenneyover 8 years ago
&gt; Node lets you use JavaScript on the server, meaning your users can store data in the cloud and access it anywhere.<p>I don&#x27;t see how using Node server-side has anything at all to do with user&#x27;s capability to store data in the cloud.
评论 #13207809 未加载
alistproducer2over 8 years ago
My 2 cents. I would consider myself a JS expert as I have writen AngularJS and RequireJS clones. Personally, I don&#x27;t agree with the path that OS JS dev has gone in recent years. The reliance on build systems and transpilers are fundamentally anathema to the spirit of simplicity and low barrier to entry that attracted me to the language and ecosystem inn the first place.<p>I understand that as we have moved from web pages to web apps the increase in complexity was inevitable, but I question a lot of the tools being used now. For one thing, once we moved to creating full applications using JS, one of the concerns that tooling moved to address was maintainability. This is why MV* caught on and destroyed JQuery as a viable option for many projects. That being said, Angular pretty quickly swapped one kind of maintainability problem (refactorability) for another (over-abstraction and cyclomatic complexity).<p>As for the dev tooling (webpack and company), one of the reason I avoid a lot of them is in my experience they can get in the way of maintainability. For example, I recently tried to pick up a 3 month old project in Android Studio and it took me around 3 hours just to get it to compile again because of updates and other tooling complexity. This NEVER happened using Eclipse. The same thing is happening and will happen when the apps being built today get dumped on some poor sod 3-5 years from now.<p>Lastly, an example from my job. I was recently asked to update the verbiage on a sign in form built ~13 years ago. The devs decided to use some java framework that had buzz at the time named JATO. Jato literally doesn&#x27;t exist anymore and building it is basically impossible. This is to say nothing of modifying it as all documentation has literally disappeared from the web. The devs picked JATO b&#x2F;c they thought it would be easier to modify and maintain. Exactly the opposite has happened. They could easily have written the form (literally two input boxes and a submit) using plain JSP. If they had, that code would still be useful today.
heavenlyhashover 8 years ago
I want a javascript framework that allows me to update a page incrementally, but also <i>always works correctly and contains full content</i> from the first server-side page load.<p>Are there any options for this? Are there even keywords I can search for that discuss this?<p>Sure, this files under &quot;anything is possible&quot;, but honestly, I&#x27;d like a javascript framework that doesn&#x27;t <i>actively fight me</i> also having static content. Any of these libraries that put their document derivation logic front and center are ipso facto refusing to compose well with a simple static first page load that renders fast and then gains progressive enhancement from the JS.
评论 #13206248 未加载
评论 #13206267 未加载
评论 #13204987 未加载
评论 #13234239 未加载
评论 #13207727 未加载
评论 #13207223 未加载
评论 #13208780 未加载
评论 #13205455 未加载
评论 #13205383 未加载
doomtopover 8 years ago
Great list! But I was perplexed by the text editors mentioned. Author claims to be looking at trend data, but seems to have a bias against Subljme Text editor. I don&#x27;t know if there is some connection to Atom or VSCode, but it seems easily verifiable that Sublime and vim are vastly more popular than other editors mentioned, yet Sublime is inexplicably absent and vim is mentioned last and sort of offhand as more of just a tool you have to know for ssh sessions.
评论 #13214969 未加载
aeosynthover 8 years ago
Is anyone using Tern as an annotations-free type checker?
评论 #13215229 未加载
jaseemabidover 8 years ago
The only issue with the blog post is that most of those tools will be obsolete before you finish reading.<p>JavaScript as an ecosystem needs mature robust solutions rather than a new way to do things every other week.
评论 #13215026 未加载
评论 #13207203 未加载
评论 #13207118 未加载
评论 #13207062 未加载
Kiroover 8 years ago
I vote for React + MobX as the goto stack of 2017.
评论 #13206085 未加载
评论 #13206030 未加载
andretti1977over 8 years ago
I must be honest, my experience with node was very short but this article suggests me that working with js may be really more complicated than working with java. Too many frameworks (which often lives too shortly), too many things to learn, it&#x27;s overwhelming...sometimes it seems to me that working with js has become so difficult that working with java and jquery is still easier and better (i know lot of people will throw me hate for this comment!)
评论 #13205660 未加载
评论 #13205228 未加载
评论 #13207491 未加载
andrew_wc_brownover 8 years ago
MithrilJS. Such an underated js framework.
评论 #13204911 未加载
ExpiredLinkover 8 years ago
Or wait another year and pick the winner of the JavaScript framework war. It&#x27;s unlikely that we will see new and relevant(!) JS frameworks over the next few years as we have seen in the past. 20 - 25 years ago dozens of Windows frameworks appeared on the market. Eventually VB won. History is repeating itself.
adamnemecekover 8 years ago
You should check out cycle.js <a href="https:&#x2F;&#x2F;cycle.js.org" rel="nofollow">https:&#x2F;&#x2F;cycle.js.org</a>. I&#x27;m always surprised it&#x27;s not THE js framework du jour.
ClayFergusonover 8 years ago
TypeScript is definitely by far the most important thing mentioned in the article. And no I didn&#x27;t even read the article. I just searched it for the word TypeScript to see what it said. However, the author apparently is pretty clueless because he implied TypeScript has something to do with Angular. It doesn&#x27;t. TypeScript is needed ANY time the runtime is JavaScript. Namely, in the browser. The only other technology TypeScript has ANYTHING do to with is JavaScript itself.
评论 #13215248 未加载
voltagex_over 8 years ago
Highly recommend spending at least a few hours on <a href="https:&#x2F;&#x2F;javascript30.com" rel="nofollow">https:&#x2F;&#x2F;javascript30.com</a> if you get a chance.
评论 #13205961 未加载
jim_dover 8 years ago
I&#x27;m curious what people think about type checkers in JS. I&#x27;ve been doing full stack development for the last few years and BE development before that. Type safety has always been worth it to me, we adopted Flow and haven&#x27;t looked back, although some FE developers aren&#x27;t big fans of it.
评论 #13215257 未加载
macpeteover 8 years ago
Learn in order to unlearn one year later - welcome to .js !
评论 #13205761 未加载
jgordover 8 years ago
Agree Vue and mobx look promising ...<p>I would say Ramda.js is most deserving of much wider adoption.
catshirtover 8 years ago
ugh- how is Angular so popular?
评论 #13204541 未加载
评论 #13204587 未加载
评论 #13205540 未加载
评论 #13205811 未加载
评论 #13205712 未加载
评论 #13204614 未加载
评论 #13204674 未加载
评论 #13204479 未加载
na85over 8 years ago
I&#x27;m going to make my 2017 enjoyable by not working with JavaScript at all.
评论 #13205832 未加载
enraged_camelover 8 years ago
Half of the items on this list - basically, anything not under &quot;JavaScript &amp; DOM Fundamentals&quot; - will probably be invalid by April 2017. :P
FrancoDiazover 8 years ago
I&#x27;m looking for a React Admin&#x2F;Dashboard template. There&#x27;s various themes at <a href="https:&#x2F;&#x2F;wrapbootstrap.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;wrapbootstrap.com&#x2F;</a> but haven&#x27;t been totally satisfied with the React offerings.
d13over 8 years ago
The article recommends learning both pure functions AND closure? So is the point of learning to use closure is just so that you know why you should never use it?
评论 #13206441 未加载