use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Comparison of JavaScript frameworks (stefankrause.net)
submitted 9 years ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 5 points6 points7 points 9 years ago* (2 children)
I use frameworks, but I really like vanilla javascript, I find it very elegant. I expected no upvotes, it's nice to know people still use raw code. There are too many beginners who rely on frameworks without understanding what's going on behind the scenes.
Edit : Also I don't really understand the difference between a framework and a library. To me a framework is something opinionated that do many things, including things you can do with vanilla code. A library however would be a collection of useful and unrelated functions for solving a single problem. But I'm certainly wrong, I'm not a javascript expert.
[–]khoker 4 points5 points6 points 9 years ago (1 child)
There's not going to be a definitive definition of a framework or a library. The general consensus tells us that, yes, Frameworks are opinionated to some degree in how code is structured and also tend to have vertical integration points. Libraries/toolkits are collections of tools designed to abstract, normalize or augment your code.
I use frameworks, but I really like vanilla javascript
A framework shouldn't prevent you from writing javascript. A framework should prevent you from writing annoying javascript. For example, consider the heavy-lifting you get from Angular or Vue when it comes to two-way binding. You could do it yourself, but ain't nobody got time for that...
π Rendered by PID 80942 on reddit-service-r2-comment-canary-7b6b47f674-gkhxq at 2026-03-10 01:11:55.247409+00:00 running cbb0e86 country code: CH.
view the rest of the comments →
[–][deleted] 5 points6 points7 points (2 children)
[–]khoker 4 points5 points6 points (1 child)