DEV Community

Why You Shouldn't Use A Web Framework

David Wickes on July 26, 2018

What framework are you using? Are you using Bootstrap, or Materialize, or Foundation? Or Vue, or Angular 1, or Angular 2, or Ember? Or Ruby on Rail...

Displaying a subset of the total comments. Please sign in to view all comments on this post.

Collapse
 
grahamlyons profile image
Graham Lyons

I completely agree. I ditched frameworks 5 years ago and started writing everything from scratch. My OS isn't as secure as it could be and the TCP stack isn't fast but the HTTP parser took fewer months than I'd expected.

5 years later, I'm nearly finished with the login page and my client is furious. Hire me?

Collapse
 
dmerejkowsky profile image
Dimitri Merejkowsky • Edited

I think you are missing the point.

What I understood is that the author is not saying you should never use any framework ever. (the title is somewhat purposefully misleading I guess).

What I think he meant is:

1/ sometimes you don't need a framework
2/ you should learn how things work "under the hood" before considering using any framework, because frameworks change all the time but the underlying tech does not.

This is true for more contexts than web development by the way.

Collapse
 
gypsydave5 profile image
David Wickes

Thumbs up to this @Dimitri - this is pretty much what I mean. Sure, use a framework when you need to or want to. But if that's your beginning and end to your understanding of development, then you're setting yourself up for a bad time.

If you're not trying to do it without a framework, then you really aren't doing the simplest thing possible. How the hell do you iterate away from a monster like Rails?

Thread Thread
 
pringels profile image
Peter Ringelmann

Sorry but your title is completely misleading.

You're claiming that what you actually meant to say was that it's ok to use frameworks as long as you know what's going on behind the scenes?

So it's actually OK for me to use frameworks then? What about the people on my team who aren't as experienced? Do we only use tools that the lowest common denominator understands?

Should I write MVC from scratch for every project/client? Or should I create a set of re-usable modules and store them in a repository? But now I've simply written my own framework. Is it OK to use that but not someone else's framework?

When you use phrases like "all frameworks are terrible" you're framing your argument in an irrational way. I agree with the latter part where you encourage beginners to learn the fundamentals. This is good advice. Call your article 'learn the basics before adopting a framework' or something.

Hand-waving that "all frameworks are shit and should be avoided by everyone at all costs" is unproductive and not likely to convince anyone.

Thread Thread
 
quii profile image
Chris James

MVC is basically just separation concerns and does not mean you need a framework

Should I write MVC from scratch for every project/client? Or should I create a set of re-usable modules and store them in a repository? But now I've simply written my own framework. Is it OK to use that but not someone else's framework?

Try not making a "framework" but just well decoupled, testable code. You can get very very far with just that.

Thread Thread
 
gypsydave5 profile image
David Wickes

What about the people on my team who aren't as experienced? Do we only use tools that the lowest common denominator understands?

I think it's more dangerous to only use tools that only your best and brightest understand on a good day.

Should I write MVC from scratch for every project/client?

Should you use MVC for every project/client? Is it always the right fit?

Collapse
 
rhymes profile image
rhymes

I don't really agree. I agree that people should know the basics sooner or later but I don't agree with everything else.

Your post, I might be wrong, has an undertone of "look at me how amazing I am because I write compilers in Brainfuck" and it's one of those elitists traits that are damaging in the industry in the long term because even if you don't mean that either generate anxiety to new learners or make us look we're some sort of gods on the mountain top.

You don't need to know everything about everything to be a good developer.

We developers think we are special but for many people it's just a job and that's perfectly fine. I do not think of my CPU cache or about the speed of light everytime I do something on my computer. We build abstractions because they improve our lives.

Should we dig deeper at some point? Sure. Should we know how to write a http streaming parser? Unless that's your business, who cares. Image processing is the perfect example. Should you know the difference between lossless and lossy? Sure. But that's mostly it. Just check the result works for you.

We wouldn't have most software if we started from scratch all the time.

I think your post is a little misleading, especially for newbies who just want to learn a trade.

Collapse
 
gypsydave5 profile image
David Wickes • Edited

Your post, I might be wrong, has an undertone of "look at me how amazing I am because I write compilers in Brainfuck" and it's one of those elitists traits that are damaging in the industry in the long term because even if you don't mean that either generate anxiety to new learners or make us look we're some sort of gods on the mountain top.

Oh believe me, I'm no god on a mountain. I just want to give a good kicking to the golden calf of the web framework. Not because I'm clever (I'm really not), or have mountains of computer science degrees or such. I'm genuinely annoyed that developers think that frameworks inevitable in their work, because I think they're more trouble than they're worth both in terms of using them and in term of the ignorance they promulgate.

And that's juniors and seniors both.

As to other abstractions - they're not my target. But I think that a web dev should be able to do what they need to do with HTML, CSS, JS and a server language of their choice. I think it empowers all devs to get more done.

Collapse
 
jfilipowicz profile image
John Filipowicz

This is how I took it, more of an empowering "You can do this" rather then condemning to people who use frameworks (myself included)

Thread Thread
 
gypsydave5 profile image
David Wickes

I'm glad you said this - it's what I was trying to get across (badly).

Thread Thread
 
kungtotte profile image
Thomas Landin

If that's the point you're making I'm fully behind it :)

I just try to put myself in the shoes of a beginner and understand how they will read a post like this. "You don't need a framework, anyone can make a great site without one" is a very different tone from "Frameworks are terrible and they make you a bad developer".

Imagine how you'd feel as a beginner if you struggled with something and someone experience told you that you were bad for choosing a certain tool?

Collapse
 
rhymes profile image
rhymes • Edited

I'm sure non brilliant developers exist, as I said it can be just a job, not everyone is in it to be a published author or recognized guru.

I also agree you should know the basics but I don't agree on the general assumption that ditching frameworks make you more productive. Ditching the wrong ones does so maybe we should teach juniors how to evaluate them.

For example: can you write a SPA without a framework? Sure. Should you? Please don't. Should you know how to evaluate the available frameworks despite the hype? Definitely.

Keep in mind that most frameworks are born in the same way: one or multiple devs tired of the options create a bunch of abstractions on basic code to be MORE productive.

You can spend a lot of time chasing quirks, I agree with that but choosing the wrong abstraction doesn't mean all abstractions are a bad idea.

 
pringels profile image
Peter Ringelmann • Edited

Ok so now he was just exaggerating when he said that nobody should use web frameworks?

EDIT: I don't have a problem with humor and hyperbole. The problem here is that the author sends inconsistent messages as to who should use frameworks and why.

Summary:

Frameworks are all terrible. All of them. I'm serious - they are making you all into bad developers. Stop using them now.

READ: Frameworks are terrible and should be avoided. (no jokes)

"You don't need to reinvent the wheel" is fine under two conditions:

  • you know how a wheel works
  • you know how this wheel works
  • this wheel doesn't come with a whole bunch of crap you'll never use
  • you only want a wheel

READ Frameworks are OK to use if you know what you're doing and you've picked the right tool for the job at hand

Collapse
 
nebojsac profile image
Nick Cinger

Amen brotha'!

Frameworks have their place, and they should be used. But NOT while you're still learning.

Please people, don't be "$framework Developer", be "Developers" first, and add $framework to your toolbelt.

Collapse
 
jdhines profile image
orangehat

Sometimes (perhaps many times, especially for junior devs) you may not have a choice, either because you don't have time to figure out how you want to do something like routing, or the team is already using a framework, so you end up becoming an "X" developer out of necessity.

Collapse
 
dfockler profile image
Dan Fockler

As a professional developer, sure, I'd say it's helpful to learn the underlying layer at some point but it doesn't have to be now, tomorrow, or a year from now. There's so much to learn with computers it's impossible to get to everything even in a lifetime.

Some people can be interested in the outcome of programming, they aren't here for craft or solving puzzles, and that's awesome! It means we've made tools easy enough for people to be empowered to create a piece of the internet they want to see, which IMO is more important than what they are creating with or how they are creating.

Collapse
 
gypsydave5 profile image
David Wickes

I've some sympathy with this position - I'm an outcomes oriented kinda person too! I much prefer to just get stuff done rather then argue about monads. Or project directory structure. Or where to put the bins out.

But I'd argue that the tools we build at the apex - the so-called frameworks - do more to slow productivity than to enhance it. How long have I spent debugging an Angular app I didn't need, or a Wepack compilation failure for a simple piece of Sass that could have been CSS?

This I suppose is the stronger version of my position: it's not just that we all ought to know the underlying layer, it's that the things we're using on top are often actively harmful to getting things done.

Collapse
 
dfockler profile image
Dan Fockler

I think for the situation you are describing you're right, unnecessary middleware can make simple tasks more complicated than it needs to be. Although if a tool is causing more problems than it solves, it's either not working correctly (buggy software) or it's life has probably run it's course (old software).

Collapse
 
sake_92 profile image
Sakib Hadžiavdić

Why do people like you like frameworks? Are you weak or are you stupid? Or both?

We got families to feed, duh! Many of us work for companies, we don't decide which language/framework/OS we're gonna use, etc, etc.

But I completely agree that you need to learn underlying stuff, especially the basic ones.

Collapse
 
peglica001 profile image
Żarko

Its an old discussion but I must add. I am a physicist. I learned physics, from newtonina mecahnics to QM or QFT. If you want to be a physicist you have to know physics. If you want to be a web dev you have to know html, css and js. It is not to much to ask. Reinventing the wheel would be asking someone to invent new html or css or js not asking someone not to use a framework. I am new to web dev and I am wathing django tutorials and its a complete and utter chaos...If you are a web developer for real you should know your craft and your craft is html, css and js. Dont go to asembly of course...but frameworks seem to me as if I was trying to memorize physics and not understand it....If you understand frameworks and basics you should be able to make your own working pattern after some time and have your own shortcuts.

Collapse
 
gypsydave5 profile image
David Wickes

Yup - I like this idea around "memorising vs. understanding". Understanding is far more flexible and widely applicable. Memorising the individual quirks and tricks of a framework is fragile and narrow.

Collapse
 
peglica001 profile image
Żarko

Yes and me being New to this it seems strange to me to use frameworks so much. Are you so bad at it that you can not develop one? Your own way of doing things I guess... Maybe it is really that complex and maybe frameworks are needed but learning django is driving me crazy.

Thread Thread
 
gypsydave5 profile image
David Wickes

In my experience (mainly of Ruby), some languages just don't have an ecosystem that allow you to escape a framework.

From what I hear Django is quite a heavy weight framework. Could you look for something a little more lightweight in Python?

Collapse
 
alainvanhout profile image
Alain Van Hout

Even low-level languages like Assembly are just frameworks to move electrons around with, and the same is true for Python or Ruby, only at a higher level of abstraction.

I realize the spiteful and polarised rhetoric is intended to illicit responses and start a conversation, but it's unsurprising that those responses will often be equally spiteful and polarised.

Collapse
 
zedlj profile image
Zöe

Hi, I am relatively new to web development.

I have built projects with HTML/CSS/small amount of JS and I have also built full apps with React. I have no issues making something with react. But I really struggle making something purely with JS/HTML/CSS.

Can anyone recommend any tutorials where they build a web app or website with no JS framework ? Or anywhere I can learn how to implement my JS skills? I struggle with setting out the JS and where to use it.

Collapse
 
nicklansley profile image
Nick Lansley

From 30 years of dev experience I couldn't agree more, David.
And yes, I have to deliver quality web apps (and underlying APIs) at pace.

I baulk at the argument that frameworks speed up development. I find that writing Plain Old JavaScript gives me so much control over what to do with the results, so I can 'fiddle with the minutiae' of coding to make a great web app as I have that deep-down control in the first place.

Sure, there are repeated 'patterns' in development which I'm quite sure jQuery has reduced to a $ call, but when I want performance and have it under my control? I just write the pure JavaScript myself.

My take? It's better to remember the JavaScript patterns for a particular task, always.

Collapse
 
thewix profile image
TheWix

Sure, if you want performance then it is good to be 'close to the metal'. High performance is a non-functional requirement that not all of us need, and it is better to focus on the domain than reinventing Knockout, Vue, react, angular, or whatever buzzword framework you want.

I find it hard to believe that writing your own frameworks for large Enterprise projects does not lead to slower development times than using a tested off the shelf solution.

What we should be teaching developers is how to understand when to use the tools available to them, not the equivalent of constructing a table saw every time they want build some furniture.

I worked most of my career as a server side guy and this hostility to frameworks is completely alien to me.

Collapse
 
gypsydave5 profile image
David Wickes

Thank you Nick - you put it better than I could. Or in fact did.

Collapse
 
thorstenhirsch profile image
Thorsten Hirsch

Disagree. Completely. Especially beginners should use frameworks, because they teach you how to structure your code. You don't learn MVC by reading a book, you learn MVC by grabbing Rails or Django and getting your hands dirty. (The same is true for all the other architectural patterns.)

I don't say that you should keep using frameworks all your live in all your projects, but frameworks take away some of your freedom - your freedom to code bullshit. Frameworks raise additional errors, they complain about stuff that might be completely fine outside the framework, but is not in the framework. It's not enough to learn the language when using a framework - frameworks make you read additional tutorials and documentation so that you learn how to apply the language.

Collapse
 
gypsydave5 profile image
David Wickes

Well I disagree completely too - so at least we have that in common!

you learn MVC by grabbing Rails or Django and getting your hands dirty.

I think all you'll learn is Rails or Django.

frameworks take away some of your freedom - your freedom to code bullshit.

Sure. But, in the words of Jeff Goldblum, "Bullshit finds a way". Frameworks just mean you'll code your bullshit in new mutant strains around the framework's constraints.

frameworks make you read additional tutorials and documentation

Isn't this a bit of a smell? When half of the books published on programming seem to be about how to use a particular framework? Always seems weird to me...

Collapse
 
thorstenhirsch profile image
Thorsten Hirsch

I give you a "like" because of Jeff Goldblum. :-))))

Collapse
 
cat profile image
Cat

The amount of sass in this article is incredible.

That aside, yes. Stick to the basics, so that, if your job requires you to actually work with a framework, you can point out what the hell is wrong with their code BECAUSE they used that framework.

Collapse
 
gypsydave5 profile image
David Wickes

The amount of sass in this article is incredible.

Its just plain CSS! 😉

Collapse
 
cat profile image
Cat

I walked right into that omfg.

Collapse
 
chrissun profile image
Chris

I agree with many of your points, such as understanding how the lower layers (HTTP, SQL) work.

But not using a framework will cause a lot of headaches. Writing code for a toy website is one thing, but writing one that supports real users and customers is another thing. No developer would want to write original code for SSL, user authentication, a templating tool, all those HTTP headers, a caching module, session handling, a custom ORM, etc.. Writing original code for authentication alone would be extremely risky and prone to security flaws.

I "get it" that developers need to understand what's under the hood. They should have CS fundamentals down. But not using a framework and trying to write all new code for a website is a bad idea for 99% of projects.

Collapse
 
eljayadobe profile image
Eljay-Adobe

David, sounds like you need to check out Vanilla JS framework. I bet it will become your favorite framework after looking at it for 5 minutes. Maybe in even less time.

Collapse
 
gypsydave5 profile image
David Wickes • Edited

I'm its biggest fan!

Collapse
 
adriennn profile image
Adrien

*its
time to learn the basics, son.

Thread Thread
 
gypsydave5 profile image
David Wickes

Lol - hoisted on my own petard...

Collapse
 
twigman08 profile image
Chad Smith

I think some people are reading what was said too literal here.

I know what the post says but don't read it too literal. Think about what it says.

He's not saying you go out and write your own parser. He's not saying you go out and write your own web socket implementation. He's not saying you go out and write everything in pure machine language.

He's saying to think about what you're coding. Think about what is going on. Think about things before you even write code. Think how it fits with what you're currently doing.

When you start to do this then you actually can pick the right tool for the job. There is no 100% rule them all framework. Don't think there is or think you HAVE to do it in this.

That is what the post is actually saying. I know what it looks like it is saying if you just read it word for word, but like most things there is more too it.

Collapse
 
kungtotte profile image
Thomas Landin

Yes. But it's also tagged #beginners who don't have the experience or confidence to read between the lines and get at the gist. They will read it literally and be dismayed because it makes it sound like they need to write their own everything before being a good developer.

Collapse
 
twigman08 profile image
Chad Smith

That is where I think I'll have to disagree.

I've been a beginner (we all have) and I remember vividly being a beginner. I remember the advice I got as a beginner. I've had some of my favorite nentors and even the one person who changed my entire life and got me interested in software development in the first place give me advice very similar to how this is written.

I believe part of being a beginner and learning is figuring out and taking the time to think about what your should do vs. researching "how do I do X an Y in Z framework."

So I'll stand by and say I've had similar advice when I was beginning and it was some of the best advice I ever got.

Collapse
 
chrissun profile image
Chris

The last sub-header of this post is: "Learn the basics, not someone's abstraction". That should have been the title of this post.

But the actual title, which is more polarizing, definitely caused more pageviews. So dev.to should be happy.

Collapse
 
gypsydave5 profile image
David Wickes

True, it would've been a much better title. If I'd proofed the piece and let it sit for a few days it probably would be the title. But it was a hot day and I wanted it done by lunchtime. So it goes.

Collapse
 
codediodeio profile image
Jeff Delaney

I've seen this same article theme rehashed many times, but never quite this condescending. The whole premise is a fallacy because "Someone's abstractions" IS programming at every level, all the way down to the hardware. The message just boils down to "Learn Browser APIs", which is fine, but they are just "frameworks" built into the browser and that knowledge will get stale too. In the real world, almost every serious app uses a framework because they save time, save money, and just produce better products than vanilla browser code.

Collapse
 
konthetweeter profile image
Kon • Edited

I agree that a good developer should have the foundation, knowledge and skills related to basic development first. But there's absolutely nothing wrong with using a JS framework. Majority of developers code for a living, for a business, where productivity is always measured. A decent framework will usually aid most solid developers with their productivity. In 2018, if I see a developer not leveraging frameworks or whatever tools are available to them, I'll question their ability to deliver solutions within a reasonable timeframe.

Collapse
 
ben profile image
Ben Halpern

Thanks for keeping things relatively civil in the discussion, folks. This sort of thing definitely riles people up. Thanks for the contribution and discussion David!

Collapse
 
nateous profile image
Nate

Wow... So much hate for just trying to say "maybe understand JavaScript a bit more before you become a JavaScript framework Dev". Like David said, frameworks will come and go, the basics are the same, learns those. And to boot, he is literally saying it because he wants you to be a better Dev!

Collapse
 
marksiemers profile image
Mark

just trying to say "maybe understand JavaScript a bit more before you become a JavaScript framework Dev"

Indeed, if this is all the author said, then any real backlash would be an over-reaction.

He set the tone by opening with insulting both people's work (the frameworks) and then people themselves:

Frameworks are all terrible. All of them....Why do people like you like frameworks? Are you weak or are you stupid? Or both?

If you call people's work terrible and then imply that other people are weak and stupid - what reaction should be expected?

Collapse
 
nateous profile image
Nate

I guess I just took it as hyperbole.

Thread Thread
 
marksiemers profile image
Mark

I think this might all boil down to British humor that isn't coming through for all the readers (myself included).

It is the mix of hyperbole with actual advice that make it difficult for me to understand what is intended - education or satire.

Thread Thread
 
nateous profile image
Nate

I just try to take everything as positively as I can. Frameworks are great but junior devs often get mixed up about what is JavaScript versus what is framework. Learning JavaScript will help you be able to use the frameworks better.

Thread Thread
 
nateous profile image
Nate

I love British humor over American humor. Maybe that's why I could relate! Haha

Collapse
 
snowbell92 profile image
Samia Ruponti

I do agree on the js, but not on sass. Sass is still good, because of utterly-stupid-mixins and placeholders. Specially placeholders. Placeholders are amazing to make someone understand what inheritance is, when it can be a so-called pain in the butt, when it can save you from writing about a hundred lines. A lesser known benefit of sass is, it is a very gentle was of introducing someone to command line.

Collapse
 
gypsydave5 profile image
David Wickes

I've been meaning to reply to this comment all day, because it really stuck in my head. Thanks Samia.

I've never really considered people moving in to development via CSS as their first step. Yes, in this sense Sass makes a lot of sense - a more complex language with more things to use. I wouldn't want to get in the way of a pedagogical technique - it's great.

But I guess my counter point would be that I would want to demonstrate some of those principles you mention above in a more general purpose programming language like Ruby or PHP.

But it's really about what interests people sometimes; if you're very in to your CSS, Sass could be a wonderful thing to learn and use. I think I'll have to think more.

Collapse
 
snowbell92 profile image
Samia Ruponti

You're welcome. Since we are talking about newbies and people slightly more experienced than that, I hope this comment gives you some more food for thought.

a lot of people, including programmers who are experienced in other fields, starts their web programming with HTML and CSS. Now, an experienced programmer knows how scope and inheritance works (really, once you know some basics of management; yes, management; it's common sense. so newbies can know it too) and it's very natural to them by the point they start web programming (I only know PHP and not a lot of it, so I may be wrong) and they absolutely rebel (ok, I exaggerated, but bear with me) at the idea of having a global scope for gasp everything. They then think of conditions, but oops, CSS doesn't have it either. but they can't escape CSS, their site won't look so nice and shiny without it, so you get three different classes that do the same thing slightly differently. If you are teaching someone, scope and inheritance can absolutely be demo'ed using general purpose language,but in the context of web programming, specially if you are not going the js heavy route,it's perhaps not a very good idea. Because, well, debugging. Debugging a global-variable-gone-wrong in any semi-complex code is very, very hard in javascript (YKJS has some very nice examples). In PHP, either you look at your screen, baffled at why your program is behaving that way or you get an error. But CSS? it's easy. it's not a programming language, but you can make it behave (somewhat) like one. Add Sass to the mix and you get an almost programming language, loop and if-else is back in business and you can finally write proper local scope without the code looking like a pile of a random-language-dictionary. Debugging is still difficult, but now you don't have to go through all the code you've ever written and while debugging, a light-bulb goes off in your head and you realize global scope is "actually" very useful in CSS, perhaps a lot more than in any general purpose language. it goes the other way around too, someone who doesn't know the first thing about programming principles can quickly catch on because they can see the problem (the entire language is the scope problem) and the solution, all in one place.

Also, let us talk about CSS variables. They are incredibly useful, but they don't really makes sense, not yet. I know it is controversial, but read on. I say this because there's no "operation" on them, not yet. CSS has no loops, no if-else, no functions (I'm not counting calc()). So I get this question a lot "but, I can just write them there, right? won't that be easier?" It's like the new shiny gold heels in my wardrobe, it complements my dress fabulously but I could just as easily have worn the dress with another pair. But variables in Sass makes sense. you can just hold a value or you can hold a value and run operations on them. So when you write "You don't need Sass, CSS has variables now." it does not show the whole picture. CSS feels restrictive to a lot of people, which in result makes them want to use frameworks to "just get it over with". Sass can make them learn the fundamentals, which is the whole point of your article.

So my point is, even though general purpose languages can be used to make someone see the programming principles, when you are web programming, CSS and Sass are the easiest choice. And CSS by itself, is not very interesting to programmers who already had a lot of freedom with other languages, which in turn, encourages them to "bootstrap their site to death". Sass can actually make CSS interesting and in turn, they learn how it works, write better code and don't use unnecessary frameworks.

Collapse
 
jurajvajda profile image
SaKeL

I completely agree, i have seen bunch of people in various projects what they thought were front-end/full-stack devs. First thing they installed bootstrap and jQuery and spend hours of stackoveflow-ing how to use it, ended up in CSS/JS/HTML in the same 1 file, not scalable, testable nor maintenable application/web. Having tens of ($)plugins what are doing the same thing, but why not use every time different one? It's so easy and convenient, but having no idea about synchronous javascript and calling yourself a developer is out of common sense.

When i introduced CSS/SASS/Vanilla JS they were completely lost, they couldn't understand any of the OOP or Classes nor "this". Idea of having JS/CSS/HTML in separate files was completely new to them. Funny the same developers were pushing to use React or Angular - very scary scenario.

Having a deadlines or doing your job is not an excuse for anybody's knowledge! I would not trust doctor, surgeon, painter, construction worker... if they would have no idea what they are doing but they can somehow deliver because it's their job.

If you want to learn and be a developer don't expect your company to pay you to learn - as it was mentioned you are there to give them solutions. If you want to learn about development take your own time for it, read, watch curses - whatever is the best for you, just don't expect that somebody will tell you at work to take time off to learn how to write code.

I have taken an approach in our team to completely strip and get rid of anything jQuery and re-wrote it in Vanilla JS. Now i can really see what is the maturity of our team and once we get the basics right we can think of a framework what will embrace our work and our effectiveness.

Collapse
 
rhymes profile image
rhymes

It looks like the real issue is the learning material or the will to learn by devs, not the existance of frameworks on some internet page 😛

Collapse
 
pringels profile image
Peter Ringelmann

This guy gets it.

The entire discussion here is a red herring: "the noobs use frameworks as a crutch because they can't code good, therefore frameworks be bad"

We should focus on teaching juniors good programming principles instead of trying to convince everyone that frameworks are a bad idea.

Collapse
 
devuniverse profile image
devuniverse

If I had no budgetary constraints in most jobs I held, I would code in assembly

Collapse
 
khairilazizee_75 profile image
khairil azizee

IMHO,

if you work alone, yes you don't need to use any framework. Build up your basic first and as long it works, don't give bug, and the client satisfies with it, it is ok.

but if you work with a team, you need a standard structure for people to working together. for me, that is the point of having a framework.

I have been in a company that doesn't really use a framework, any framework, they just hate it when I mention about changing their development method from vanilla to framework. The manager will look at me like he will kill me if I mention any framework.

oh heck, the even don't use OOP approach.

for 8 years, it is pain in the a**.

Collapse
 
quii profile image
Chris James • Edited

but if you work with a team, you need a standard structure for people to working together. for me, that is the point of having a framework.

Have you tried talking and collaborating with your team? Is it really neccessary for a framework to enforce a collective sense of what software should look like?

Collapse
 
marksiemers profile image
Mark

It isn't necessary, it just costs time to roll-you-own. Which means money (salary mostly) and opportunity (time-to-market mostly).

When you use an existing framework you save time in at least these areas:

  • Writing documentation and keeping it up to date
  • Getting a new hire up-to-speed
  • Implementing new features
  • Guarding against security vulnerabilities^
  • Getting answers to questions without costing the time of a teammate

^ Security is a big one, Rails for example has a bounty program for finding and reporting vulnerabilities. Is your team paying someone to find security vulnerabilities so you can patch them before they are exploited?

Collapse
 
iam_timsmith profile image
Tim Smith

I can see both sides of this. Although I don't think it was worded as well as it could have been in the article, I don't think frameworks are always necessary.

Being a person who learned jQuery before I really learned javascript, I can understand why it's appealing to learn a framework so you can make something work. Eventually jQuery either wasn't challenging enough or I wanted to know what was going on under the hood so I learned javascript. I don't know that I would have continued with web development long enough to reach the point of learning pure javascript if I hadn't started with the framework and seen immediate results.

On the other hand, knowing how to do things without a framework is definitely a capability to have. Understanding both the reason for the framework and how to use the framework is much easier when you know how to do things with plain old javascript. It also means you can appreciate how much of the heavy lifting the framework may be doing.

I really just think it depends on the person and what they are motivated to do. If you're a person who wants immediate results to see what you can do with it, go with the framework and learn the "under the hood" stuff later. If you want a better foundation before diving into the framework, learn pure javascript or whatever.

Just do whatever makes you most excited and you'll eventually figure it out.

Collapse
 
gypsydave5 profile image
David Wickes

Hey, thanks for the well reasoned and polite response!

To address your point about jQuery/JavaScript directly - I honestly believe that the capabilities of JavaScript in a modern browser make a library like jQuery redundant. I don't think you need to learn the 'under the hood' stuff later - I think that it's powerful and simple enough to do what you need to do, for both new developers and seniors.

Just do whatever makes you most excited and you'll eventually figure it out.

This is always true.

Collapse
 
iam_timsmith profile image
Tim Smith

I agree about the redundancy, but when I learned it things were a bit more difficult. Not to mention for someone just starting out, I want to build things. Learning if/thens, variables, and calculations are cool, but it’s not directly apparent to a beginner how to make an offcanvas drawer slide out when you click a button.

The sheer popularity of jQuery made it very easy to find code/tutorials for this. Heck, I google an issue I’m having with vanillajs and the first 5 links are jQuery solutions.

Collapse
 
xortype profile image
xorType

Being a dev before the css/js frameworks hit the scene has jaded my views on frameworks. Basically, learn the underlying language then use frameworks. Nothing worse than wasting time interviewing a candidate that knows Angular but cannot write a simple array and filter in JavaScript.

Collapse
 
fitzone profile image
fitzone

Thank you David Wickes

May you live long.

I do choose frameworks. If i can not use HTML, CSS, JavaScript, PHP, ASP, SQL, and C#/Java; I should try another career path.

This has been my own rule since day one and I keep to it.
For the first time I find a bold article clearly written about a decision I made years ago.
I am more comfortable with the good old Notepad for all coding, and sometimes the MVS IDE.

I still use DOS commands to manage my directories.
Yes, I am not the best out there, but the little I know gives me joy.

Your article, Sir, gives me the courage to continue learning and applying.
I also understand you did not say, 'do not use frameworks'.

Thank you so much, it means a lot to me, I feel energized, because I like digging things to their root. I like knowing what things are, why and how, they work.

Thank you David Wickes, I am following you from today onward.

I am Mr. Chieki Chukwuezugo

Collapse
 
carlosmgspires profile image
Carlos Pires

The day I heard someone talk about "Native Javascript" I realised the level of idiocy to which front end web development has come. I guess that's why some people say they're "coders" instead of "programmers"...

Collapse
 
pringels profile image
Peter Ringelmann

We all have anecdotes about people who have said stupid things. I've met some extremely incompetent back-end developers too.

But if you genuinely believe that all front-end development is idiotic then you're a bit out of touch. Maybe try to find a community of serious front-end developers and open a dialogue with them instead of just writing them off as mere "coders". You might just learn a thing or two :)

Collapse
 
carlosmgspires profile image
Carlos Pires

WOW!... You missed the point completely... That was no anecdote: there is a whole host of people talking about "Native Javascript".
Plus, when I say "some people" I expect you to interpret this as "some people" and not "everyone". It never occurred to me that I would have to explain this to anyone.
Try learning a bit of English. You might just figure out a thing or two.

Collapse
 
chris_bertrand profile image
Chris Bertrand • Edited

If I could like this more than once I would!

The web has changed so much in the last couple of years, and the first thing I tell new devs is to not fixate on these frameworks and learn the fundamentals.

From now on, this is the article I will send them too! Thanks!

Collapse
 
absolux profile image
Abdessamad MOUHASSINE • Edited

Hello David,

Thank you for sharing with us your thoughts and feelings about the usage of web frameworks.

I've noticed recently, that web frameworks become a new life style in web development. Tutorials, dev camps, cons, everywhere we talk about them. Corporations and sponsors promote the usage of frameworks and their whole ecosystem, and attract developers, mostly beginners, in my opinion, for one reason : "Sales".

But, as a developer, novice or expert, or as a team, do we really need web frameworks for our projects? I don't think so.

Web frameworks give you "wings", like red bull, but enforce you a specific way of how "to fly". They are useful for rapid application development (aka RAD). It's a double-edged tool to use with caution.

We are missing solid and robust libraries to make the jobs done. That libraries handle simple issues, like cookie serialization, HTTP request parsing, middleware dispatching, etc, and let you mix them as you like and how you like.

An all-fit framework doesn't exist, and will never be.

Collapse
 
joshparkerj profile image
joshparkerj

This is a disturbing article. Does anyone seriously claim that it's easier for beginners to use a framework? Like, if you don't know how to write a form element without a framework, you'd have to be a masochist to try to learn to do it with one. And, if you've managed to figure out how to make one with a framework, going back and learning how to do it without one will seem trivially easy.

Collapse
 
mnivoliez profile image
mnivoliez

Thank you for your writing.
I would like to address my personal point of view at the problem describe.

Frameworks are all terrible. All of them. I'm serious - they are making you all into bad developers. Stop using them now.

That's remind me of the saying of one friend of mine:

All languages sucks, some less than the others.

I could not agree more with the second. What I do not agree is that using a framework is not necessarily making you into a bad developer.
The exemple of the "right" framework for the task has already been introduce into the comment so I'll arg on another one: Sometimes, you do not need to understand more than the gross picture. For exemple, one might realize an application making real time image through a webservice. The "most" important part is the rendering. He migh use an http framework getting care, at least for the short term, the web part and concentrate on the rendering. You don't need to know how a car works inside its engine to drive it.
That being said, the gross picture (at least) should be acquired.
Also, even if framework may come with a number of tools useless to you, sometimes it is still the right fit (like QT for C++).
And then, arrive the professional question. You have deadline and possibly an existing environment. If a company use React (more Library than framework) it may be counter productive to ask the newcomer to not use React to learn how to make a renderer lib themself.
Same kind of problematic with deadline.

Of course, it works also the other way around, sometimes we got the times an resources and no particular need of an existing framework.

On another subject, I think it's not appropriate to attack the author credibility with terms such as "fanatic". The discussion is much more interesting without "ad homines" attack. Sorry if it sounds bold of me, but I think someone who put work into writing deserve better.

Collapse
 
david_j_eddy profile image
David J Eddy

I was -really- skeptical until this line: "...but you still don't really know how HTTP works. Or what a POST request looks like. Or how to write a form element. Or how to use a database without some freaky ActiveRecord nightmare layered on top...". After that I was sold.

You points are all valid. To much today is abstracted away from the base technologies.

Well written article, well stated points, great ending.

Collapse
 
juanfrank77 profile image
Juan F Gonzalez

It's funny because I feel like the dev out of the "cool kids" block 'cause I've always been doing programming in plain HTML, CSS, JavaScript (a little bit of Jquery) and Java and C for that matter. And all I hear around is the people talking about NodeJS, React, Angular, web frameworks for Python, Ruby, Go and God knows what else will come after.

Collapse
 
petercz1 profile image
Peter Carroll

Man, I have so seen the light. Since MSFT decided to ditch their browser and go with Chromium I've come to believe that webcomponents and no frameworks are the way to fly for the VAST majority of projects. I took up your TODO challenge and knocked up an app with multiple components all chatting away to each other - and async to the server - in 400 lines of JavaScript (complete with EvilBoss adding pointless meetings). And nary a framework in sight: github.com/petercz1/todo_no_framew...

The only extra bit I had to master was how pubsub works in JS. Now I have that cracked I know what's happening in every line of code. Can't say that when you do npx create-react-app wutevah...

Collapse
 
drbearhands profile image
DrBearhands

Thank you for this. I recently worked under a developer who used frameworks for everything. His thinking was completely governed by them. It was awful. Seeing people defending frameworks as a solve-all tool is a depressing reflection of the state of our industry :-( . "Know what you're doing" (a bit) should really not be seen as elitist.

Collapse
 
mathamagician profile image
mathamagician • Edited

OMG thank-you for this. I hate everything about the current state of web development. The arrogance, the zealotry and the emphasis on trendy frameworks. It's so infuriatingly stupid that people create a rube goldberg level of complexity in order to use a screw driver to hammer in a nail.

While most of the people doing this probably don't know any better I can't help but think this is an indictment of the entire profession. Back in I think it was the Baroque Era of music musicians figured out a way to use complexity as a wedge to keep out amateur musicians. They would purposely write sheet music in extremely difficult keys that only very experience musicians could play easily. Then when someone in the aristocracy asked for a certain song to be played they needed to have a very experienced musician in order to play it.

I can't help but think developers have done the same thing with web development. Everyone has created these massively complex and overly specific frameworks on top of relatively simple underlying code. Solutions are really just band-aid that break down quickly as soon as any element in an overly complex system is updated. Instead of creating robust solutions developers become these religious fanatics for their framework because the more people who use their framework the more marketable their skills become.

Collapse
 
fleepgeek profile image
Emmanuel Okiche

Good read with strong sarcasm.
I see many people are against your approach to pass the bitter truth but your message was clear.

As a teacher and a group's moderator, i see many beginners struggle with frameworks.

95% of the times, its because they haven't learnt the basics of a language or the stack (html, css, js, http, database mgt et al) needed to build stuffs.

So they can't really tell if its a framework or a language problem.

I don't really pity them. If you want to become an engineer, there are steps to take.
Skip....and you'll pay the price someday. The benefits of knowing what happens behind the scenes outweighs the cost of not knowing.

Good stuff

Collapse
 
ferderer profile image
Vadim Ferderer

Github is hardly a shining example how things should be done. First of all, the simplest things does not work in somewhat recent browsers. Maybe it was better to keep jQuery? After all they still use bootstrap, and deliver 600k of JS-code, 500k of CSS, and 100k for a very simple repository landing page. Seriously, the page could be done in 100k total with mostly pure HTML and a few drops of JS.

Collapse
 
gablaroche profile image
Gabriel Laroche

As a 20 year dev that just got into the job market, I feel like I have a few things to say. For starters, I studied 3 years in web development and multimedia in a Québec college (Cegep) and we started with learning the basics (JS, CSS and HTML php and MySql later). Later on we leanred about JQuery, SCSS and Laravel. I believe that this is the best way to learn about the core first and then learn about frameworks later on. Frameworks and libraries make it easier when you've learned about the basics first. New devs should learn the basics first, life is gonna be much easier after that. Sidenote, In my current job, we're using AngularJs, and I was able to pick that up pretty easily even if I never touched Angular before. Sorry for the rambling, Have good day and have fun coding!

Collapse
 
raulmuroc profile image
RaulMuroc • Edited

Hello everybody,

First of all, thank you @DavidWickes for this post.

As others, I agree that the 'title' might be misleading but once you read the 'body' or let's say, the article itself, the misleading is clarified and solved.

To add some value to the discussions and put it simply while reinforcing the article: I agree and recommend what David Wickes states BUT I would separate it in two differing paths:

1) If you have never learned to program and want to be a programmer or related to it (software engineer, tester, architect, user...), then start as he mentions, spending 3-5 years learning the fundamentals.

Do that by:

1.1) ask yourself what topics would you like to specialize: are you going to be a Data Scientist, a Web developer, a Mobile developer, back-end, front-end or full-stack developer? Kernel developer or FW developer? Low-level languages or high-level languages? Compiled or interpreted? Caring of memory issues or let the choosen-language do it for you? Long etcetera. It might take you even a day or more to decide that but is worth it to spend some time to decide your future career and professional life.

1.2) do you want actually to "specialize" or be more a "generalist"? Meaning, do you one to pick-up one environment (mobile, web, business-process, business-apps, database-mgmt...) and be a master/guru solely on that topic(s) or do you want to be a programming-polyglot where you can program in 3+ languages, know OOP, algorithms fundamentals, etc and being able to apply to practically any job/environment but without getting deeper on those topics?

1.3) once went through them, start by learning fundamentals on that direction as suggested by the article:
1.3.1) search algorithms.
1.3.2) sort algorithns.
1.3.3) pseudocode usage.
1.3.4) design principles.
1.3.5) http
1.3.6) database & SQL.
1.3.7) one programming language that feeds previous decisions:
1.3.8) c/c++ for OS, kernel, cross-platform & performance needs.
1.3.9) java, python, ruby for non-performance needs, high-level needs.
1.3.10) JavaScript, PHP, CSS, HTML (long etc era and also the ones in 1.3.9) for web development.
1.3.11) IOS or android for Mobile DEV.

2) you are already an experienced developer but that relied too much on existing frameworks without first jumping to the fundamentals, then please go throw all points listed up in the 1) and 1*). It is time perhaps for you to go throw it deeply.

Hope it adds some help to what @david maybe (and I say "maybe") not that correctly wrote in the 'title' but that expertly described in the article's body.

Kind regards

Collapse
 
baraniprasathkvk profile image
baraniprasathkvk

Created an account just to comment here. Ended up here after some frustrations on working with materialize which no one knows why its included in our projects. Everywhere devs are utilizing frameworks without even analyzing whether they ctually need it or not. And for God-sake change the background color of your follow icon or the follow text to something less contrasting and pleasing to the eye. I cannot read the article at all without zooming in to get that button out of my sight!

Collapse
 
gypsydave5 profile image
David Wickes

And for God-sake change the background color of your follow icon or the follow text to something less contrasting and pleasing to the eye.

You're the first person ever to mention this - it was deliberately horrible, but I will change it now!

Collapse
 
valdorvaldor profile image
David Valdivieso

This is why I think I use frameworks...

Because I'm a lazy bastard. Only in a few personal projects I've built things from scratch (backend), And I did that because I was really interested on building those systems the best way I could and because that specific feature was really the core of my project and the one I thought it should not depend on third party software.

When you have deadlines and you are going to forget everything about that project after 12 months. It does not really matter how you build it and how much effort you spent on it. You just need to finish it.

Only when you are your own client you are critical enough to build things from scratch.

Collapse
 
gypsydave5 profile image
David Wickes • Edited

I like this reply, as it focuses on where frameworks shine: short term, quick project based work for a client to a deadline.

But then I remember this tweet...

Collapse
 
andrewbrown profile image
Andrew Brown 🇨🇦

So for ExamPro I don't use javascript frameworks at all just plain javascript. Though now considering puting angular in some parts for richer functionality but I know why I am putting it in there.

My own concern is juniors reading this and thinking you don't need frameworks. When I'm talking to bootcamp grads and juniors I urge them to use frameworks and learn complete ones such as Rails, Angular so they can see all the pieces involved instead of inventing their own bizarre code.

Also, Mislav to be the one removing jquery sounds right. I remember at a conference he just started editing my javascript code removing all the semicolons claiming it was cleaner.

Collapse
 
toyssamurai profile image
Toys Samurai

OMG! No kidding, I was crying after reading, may be the 5th paragraphs. Look, I am not 100% against using frameworks. But there are many situations that we don't need one. And, I have a hard time understand why we would need one for most content based websites. 99% of the time, when a comment site needs major redesign, whatever framework you have chosen to use would have be so outdated that you will have to get rid of it completely, which, of course, defeat the so called "benefit"of using a framework.

My biggest complaint about any framework is that they make developing simple site/app complicated. Take Vue as an example. It is supposed to be lighter, simpler than React, but it is heavily relied on using the cli if you ever seriously into creating components. The problem is that the moment you start using the cli, you lose the simplicity of web development. Your client side code suddenly won't work at all without being built! What makes things even worse is that, some people don't even realize that! They look at their codes and sees that they are using "import", but they don't know that the "import" they are using isn't exactly the same one from the web standard.

Collapse
 
lazarljubenovic profile image
Lazar Ljubenović

Make sure you don't live in a house either. Find a cave, kill the bear in it with your bare hands (using tools is cheating), light a fire somehow and try to survive. Then let the natural selection kick in.

Collapse
 
gypsydave5 profile image
David Wickes

Could I kill the bear with the bear hands I still have left over from the last time I did this? Just asking.

Collapse
 
lazarljubenovic profile image
Lazar Ljubenović

Sure! The question is will preaching around the village how using tools to kill a bear is stupid make you a first-degree or second-degree murderer.

Collapse
 
gtanyware profile image
Graham Trott

Most interesting. A lot of discussion about libraries vs frameworks, but there may be a third player; the DSL. Is a language - SQL, for example - a library or a framework? It neither calls your code nor is called by your code; it is your code.

Collapse
 
blkdmndknight profile image
Clint Gallon

The average business user is way past standard HTML … They want word/excel in their browser … just ask them … "I want it to work just like word " … if I had a nickel for every time ive heard that crap from business users. Well guess what dude … This isn't word … its a HTML and there are tons of limitations and reasons why you cant have word in your browser.

Collapse
 
foxjstephen profile image
Stephen Fox • Edited

This was amazingly accurate and hilarious. Tomorrow I'm going to share this at my company and watch the hate roll in: it's a Java shop and for some reason, Java devs tend to love their frameworks.

I think the comments will be similar to what they were here: many people following the slippery slope fallacy, not realizing that this is a satirical argument, that presents the absurdity of contracting a factory when all you needed was your neighbors toolbox.

So, do you have to do some work? Yes. It's a job that you are paid to do.
Do you need to spend the more part of your time figuring out why the aforementioned factory is on strike, or do you yourself twist that screwdriver?

I'll tell you what I'm going to do: borrow the tools and ask him to show me what's worked best for him. Maybe I'll learn something new. Maybe I'll just be a little more familiar with a neighbor.

Collapse
 
elarcis profile image
Elarcis • Edited

Bollocks.

Well I get the point of “you should learn what’s behind”, but no one ever said that because they were using a framework, they’d never need to learn the underlying technology.

I started with AngularJS and progressively learnt how it works behind the scene. I learned new patterns and coding good practices, I learned its strengths and shortcomings, what to watch out for when coding things on my own (even outside of AngularJS).

So in retrospect, I’d encourage newcomers to actually use a framework so that they get a glimpse of what is recommended to do, what is comfortable to use, so they can slowly get up to speed on what they need to know about the web without shoving their head into a wall of bricks, because right now that’s what webdev is to the unwarned newby.

If I said “Don’t use any of that, do your own stuff to better understand”, I’d expect them to probably do shit, get frustrated at their unmaintainable and buggy mess, do some more shit, get frustrated again, quit and go become a carpenter or something.

“I’m fascinated by wood. I’d like to decorate my appartment with wooden furniture then later maybe make my own, where could I buy som…
— Pffrt, don’t buy wooden furniture, you’ll never truly understand the beauty of wood. Start by making your own furniture, so that you really understand what you’re getting into, the implications behind every table and chair you see. Feel the underlying material, if IKEA is making wooden stuff, so can you!
— Ugh, maybe I’ll become a programmer instead.”

Collapse
 
vekzdran profile image
Vedran Mandić • Edited

Good marketing with the click-fury-bait title. Lovely article by the way, it is very amusing to see how developers can not read between the lines and start arguing with the author. People are so overzelaous on sarcastic generalisation like it is a new shiny framework they wanna try out. Funny but still to the point article (for those who don’t get upset immediatelly).

Collapse
 
carlosmgspires profile image
Carlos Pires

I also find amazing the rampant epidemic of strawman and other fallacious remarks in the comments.
If you are sane, you will decide on wether you should use a framework or not based on cost/benefit analysis. Obviously.

Collapse
 
ctn382 profile image
ctn382 • Edited

As a beginner, I appreciate this post because I tried to develop my very first website following a Django tutorial. I managed to finish it but I realized I do not understand how the sqlite, the HTML files and the Python code actually worked.

I guess I need to focus more in the basics in order to understand how the frameworks actually work.

Collapse
 
daniel_grvty profile image
Daniel

I don't disagree with your point of view, but I would disagree a little bit with the execution of your post.

From the beginning my blood began to boil, not because a WHY, but rather because of how it is written. Just as soon as I read your conclusion my view of your post shifted and I totally agree. That being said I would recommend another approach for this kind of posts.

It is truly sad that nowadays I meet a lot of pseudo-developers that just know how a framework works but they don't know what lies beneath the hood. It is stupifying how sometimes they gloat in the fact that they are masters of REST API's in Django but they cannot even grasp the concept of something like GraphQL. And they believe the learning curve is too steep because they need to learn another library like graphene just to understand. Sometimes this type of developers just waste a lot of resources because reading http requests, MDN, or even the underlying code of the framework seems too hard.

I fully agree: You shouldn't use a framework until at least you grasp what it does underneath.

But I totally disagree with trying to generate an emotion in the reader to have a greater impact.

Collapse
 
gypsydave5 profile image
David Wickes

Hey, I'm sorry I made your blood boil! It's far too hot for that. Maybe I was too hot when I wrote this post... but thanks for the response and feedback.

Collapse
 
skliffmueller profile image
Shannon Kliffmueller

This is a huge problem in the web development world. I find myself writing up libraries in javascript, simple things like listening to scroll wheel events, or making a cross browser compatible animation with basic sine trig math. But I have co-workers that are just baffled by the idea and don't understand it, then try to convince me to use libraries. And I backwards engineer those libraries and present to them, do they really want to use a library with a butt load of dependencies and thousands of lines of code vs a 20-30 line script using native javascript functions? Everyone is so willing to learn how frameworks and bundled libraries work when it comes with so many example scripts you can copy and paste, but learning actual javascript and reading API reference docs? Way too much to handle. Programming is puzzle solving, frameworks and libraries are cheat codes. You should only use cheats when you have solved the puzzle already.

Collapse
 
petercz1 profile image
Peter Carroll

Recently I fired off a new react app and then ran tokei on it - 2 MILLION lines of JavaScript - and I haven't written anything yet.

And I'm supposed to teach Bootcamp students how this all works? Can anyone claim they know how 2 million lines of code work?

Anyway, I started fiddling around with web components after watching Vaadin's video, and after a morning's work I had a bunch of components all maintaining state and yakking away with each other - in 274 lines of code, and not a single framework (or library) in sight (demo)

Since ES6 and the demise of Explorer/old-style Edge, I can't help feeling the whole giant front-end frameworks business is in it's final days.

Anyway, great work and excellent points.

p.s. had a quick shufty at your TODO project - looks like fun, I'll see if time permits!

Collapse
 
soulfiremage profile image
Richard Griffiths

You know what, frameworks are the reason I say I'm not a front end dev.

I can do nearly anything reasonable, and some less so, in sql alone-just give me enough time ok?

Today we had to duplicate a spreadsheet of aggrated results with um.... Just html and the result set. This set is a table whose entire content is a single result. 216 cells worth.

We generated the entire table in maybe 30 lines of c# and some dog simple css.

Its really rather nice, it's readable, we can maintain further pages this way.

And yet we are novices at html, css, and hardly ever touch javascript.

The work is worth money to someone.

Over complicating the front end is what my perception of frameworks is. If all I've got to do, to be a front end dev, is do a decent job of generating reasonable html and know my css, I can manage that.

Collapse
 
elcotu profile image
Daniel Coturel

Once, back then in 2012, I was working with a customer. We where making the bussiness case for an integration between my customer's ERP and their logistic's vendor WMS.
We met with the vendor's CEO and he told us he was finishing the development of their own operating system... Then I thought, "He must have misunderstood what he is buying".
Anyway, later that week we meet with the developer... And indeed, he was developing a whole operating system to support the warehouse's operations. He was leading that development since 2010.
Time has gone by, two years later I mounted my own software shop so I lost contact with the case.
A few months ago, casually met my customer... He is still struggling with that integration and his vendor never implemented his software.

This post reminded my that case, even if it's not the meaning of it.

Collapse
 
nicolasguzca profile image
Nick

I agree somewhat with your article. Sometimes frameworks are a little bit of overkill, specially on Javascript where you can do many things with Vanilla javascript instead of jQuery I specially dislike frameworks when you get an error that you have no idea why it's happening and it ends up being a framework error.

That being said... Frameworks are pieces of software that have a very active development cicle, where many developers have tested and fixed bugs in all its iterations, which is why they are 10 times more secure than any pieces of software you write from scratch, specially for beginners.

For example: One of your requirements is to build a backend protected by a login on PHP with social login and user roles. You can use Codeigniter, Lavarel or your choice of framework and create a secure robust backend or write everything from scratch, taking twice as long and leaving it very insecure and prone to your errors.

Collapse
 
egucciar profile image
Erica Gucciardo

React is pretty neat. Just gives you access to a declarative programming model which can be functional. Meaning easier to reuse and understand. It's like, hey, I need a bike. So I made some wheels, metal, and a bike. Now I needed to make a car. So I reused the wheels and made a car. See? Pretty simple if you ask me.

Collapse
 
leob profile image
leob • Edited

Right:

"Frameworks are all terrible. All of them. I'm serious - they are making you all into bad developers. Stop using them now" ...

All I can say is, total rubbish, biggest nonsense I've ever heard.

If I'm on a project or a job and I have to pay my bills at the end of the month, then the only thing which counts is "does it get the job done". If it does, then just keep using it. If it works, it works, it's that simple. In many (most?) cases it's not even for me to decide whether or not to use a framework, or which one for that matter.

If you have such a strong opinion about this then don't preach - show!

Convince me that it's so easy, and realistically feasible for a person with deadlines and without tons of time on their hands. Show me the absolute minimum CSS (and JS) that's needed for a real-world website, covering (amongst others) CSS resets, viewport, typography, color scheme, layout (grid, responsive), accessibility ...

When I see a convincing example of something that takes care of all this (and doesn't take weeks to put together), then I'll gladly drop my frameworks.

Oh and don't get me wrong, I'm 100% for learning and mastering the fundamentals, but that doesn't mean that not using a framework would be realistic or even a viable option on many projects.

Collapse
 
devguykyle profile image
Web Genius

Hey David,

Awesome article. It inspired me to try writing code with less frameworks. It exposed some holes in my knowledge as a dev but also helped me to gain some important skills and insight. Keep it up.

You can view my code at the Github link below!

github.com/devguykyle/LessFramewor...

Collapse
 
mudlabs profile image
Sam

This is why I immediately turned away from jQuery when I first started learning to code.

At the time everywhere I went to learn the approach offered was write this jQuery, it will take care of all the stuff for you. Ok cool, but what's the stuff?

It became clear that if you ever want to actually know anything about the code you are writing, you've got to walk in the gutter and learn the underlying language.

This doesn't mean you can never use a framework, but you defiantly should not start there. At least not in isolation.

Collapse
 
bgadrian profile image
Adrian B.G. • Edited

Frameworks are all terrible. All of them. I'm serious - they are making you all into bad developers. Stop using them now.

Let's talk about this, as I may have lost most of you with that opening. Why do people like you like frameworks? Are you weak or are you stupid? Or both?

fp

It is very easy to throw mud, to speak like that when you are in powerful position, already have a good job, know some CS and studied for years web dev.

First you need to understand from where they come, what difficulties they have, maybe some of them are starving, are in war zones, some of them are just lazy, most of them are just uninformed.

Let's speak about the root of the problem bootcamps and courses.
Instead of blaming the students we could do better, let's start making free or paid courses and online workshops, better than the bootcamps.

Let's teach vanilla and then frameworks, let's take them trough the entire process of developing a framework. You will soon realize that you cannot do that in 4h/week, in a few months, so you need to cut things out. Put yourself in the teaching position.

Let's make solutions, just saying.

PS: you also have to change how companies hire, they do not care if you know vanilla or frameworks, what is sequential allocation or a pointer, they hire engineers to solve their problems. What is the fastest way to learn how to solve problems? By learning frameworks. So again, let's find a solution for this problem before you throw big words.

Collapse
 
nebojsac profile image
Nick Cinger

It is very easy to throw mud, to speak like that when you are in powerful position, already have a good job, know some CS and studied for years web dev.

Well yes, it takes years to be good at it.

First you need to understand from where they come, what difficulties they have, maybe some of them are starving, are in war zones, some of them are just lazy, most of them are just uninformed.

Yes, some of them have good reasons of doing it wrong. This doesn't mean we should sugar coat it. They have to be aware, even though they can't change it now. But they will have the option of fixing this later, and they need to know that it's an actual problem. And there's a crazy number of devs that don't see an issue with this "framework-first" approach, that's who he was aiming for.

He's not blaming students. He's blaming the approach, wherever it comes from. The students shouldn't feel called out, they're, at best, the victims here. But they need to hear this.

Let's teach vanilla and then frameworks, let's take them trough the entire process of developing a framework. You will soon realize that you cannot do that in 4h/week,

Yes, getting good at programming takes a year of 8h per day. Yes, you can cut corners and start making something sooner. But you have to be made aware that yes, you took a shortcut, and you should come back to vanilla as soon as you can to fix this.

PS: you also have to change how companies hire, they do not care if you know vanilla or frameworks, what is sequential allocation or a pointer, they hire engineers to solve their problems. What is the fastest way to learn how to solve problems? By learning frameworks

That would be great, if learning the frameworks solves the problems. Devs without vanilla knowledge (like basic OOP for example) that go straight for the framework cause more problems in the code they work with than they solve. Companies have hiring requirements, yes, but young devs don't need to aim straight for big companies. Start smaller, freelance sites, projects for friends and family. They can get better before applying for tougher jobs. Unless the company is hiring for an intern/entry level, they should get some experience first anyway. But yeah, that's a separate problem onto itself.

I do agree with the gist of what you wrote, the students are not to blame. The post writer wrote some things for effect, but nobody should feel called out for it, he's just speaking the truth in a colourful way. Students, as you call them, have the resources needed available online(for the most part) and they should take the time to learn, and it takes time to get good at anything.

Collapse
 
bgadrian profile image
Adrian B.G.

I'm blaming the same things, so we are all good, I just want him to reconsider his hate approach and move into a more constructive one.

I'm speaking with junior web devs daily, I have studied the same problem in the last 2 years or so, I've seen the gaps they have, I'm not surprise if questions like "how to sum 2 numbers with react" exists on stackoverflow :(.

have the resources needed available online(for the most part) and they should take the time to learn, and it takes time to get good at anything.

As a fresh mentor, I quickly realized that my "main duty" is to filter the resources. I think the today student problem is not the lack of good material, is the abundance of the lower quality material, and when you are studying you don't know the difference, you learn the "highest rated" personality or course.

After a few months of production, the "damage" is done, you cannot say "you learned the wrong way" because the answer is "but how? I can build websites, I solve problems". The best way to "fix the gaps" I have found is to get into the trenches, when they are stuck and explain them how and why they got it wrong.

Instead of "learn Big O and optimization techniques" we can say:
"Your view component is slow because: you see these 4 nested fors? ok, let's draw them on the table and calculate how many times these operations are computed. Now how can we improve them? ...."

Another good way is by example, I found that just by sharing my screen, they learn a lot, like how to use their tools (IDE, dev tools), how to approach a problem and so on.

Thread Thread
 
nebojsac profile image
Nick Cinger

Good on ya for fixing this from within the trenches! I try to do the same, I have a basics course in PHP set up (in my native language) and we start from the nitty gritty.

People struggle with looping through arrays in their first months, so no wonder they can't really grasp what a framework does. But they definitely need to be brought back to basics.

I've hired juniors, and I had better luck with those that knew "just" html/css/js/php, than with those that "knew" "Laravel/jQuery/Bootstrap", because with the former we had a base to work off of. With the latter they weren't able to navigate simple OOP relationships, let alone debug the first Exception their favorite framework throws up.

The industry is a bad place. We need thousands of develpers today, so we try to rush people through this. But that doesn't work. What you describe is the way to go. But I do agree with the original post as well. And I think it's more about the ones with about a years worth of experience that need to hear those harsh words, just so they're not complacent.

Collapse
 
quii profile image
Chris James

let's take them trough the entire process of developing a framework.

I think one of David's points is you don't need a framework and that's half the problem with this industry.

People immediately dive into a problem by picking a framework and you see it all the time with devs on various forums asking "what framework should I use".

Collapse
 
thedevcristian profile image
Cristian Paul Castañeda

I saw this article and it helps me to learn more the basics and documentation syntaxes on MDN more than using the frameworks. It'll help us to build easy but when the debugging comes to development we'll never know what will happen.

Big thumbs up for this! ✌

Collapse
 
desolosubhumus profile image
Desolo Sub Humus 🌎🌍

Well, I finished refactoring my first major project (that wasn't a static website), and now that I've gone vanilla, it's simpler to maintain, easier to use, and a heck of a lot faster - 76% faster.

Oddly enough, the amount of vanillaJS it needs to work is less overall, as I'm not fighting to make an unnecessary framework function properly anymore.

Collapse
 
corbyn11629764 profile image
corbyn

I used to make fun of frameworks until my nightmare during my computer science final year project. I went against all advice to use laravel and other frameworks and being a fluent php javascript coder I decided to hard code a CMS from ground up. Meanwhile my other colleague who had an even more complex project than mine went with laravel and within a week he had completed a prototype. I presented my prototype in the third week and it took me over a month to finish my CMS and it was littered with msny bugs. I paid dearly for my stubbornness and since then I hv come to learn that clients only want a robust and working application. They don't care how u developed it. Also the faster you are with your working deliverables the more u gain a good reputation. I hv now adopted an attitude of learning a language then follow immediately by learning a popular framework of that language for rapid development. It has paid handsome dividends.

Collapse
 
mbuchok profile image
Michael Buchok

I agree with this article and also appreciate the points made in the comments.

When I first started out in my career I used frameworks heavily. I knew there was a lot under the hood that I didnt understand yet. When I became comfortable enough with a variety of frameworks I took a step back and decided to learn how everything actually works. Was kind of a big eye opener for me.

I appreciate how frameworks can make things quick and easy to develop a project, but I personally like to look at what a framework has done well and use the individual components I actually need and create my own libraries. I dont like relying on things that might fade from existence sooner than later and prefer to use the language these frameworks are based on.

Collapse
 
thomaswdmelville profile image
Thomas Melville • Edited

Thank you. An interesting take on the use of frameworks. This is quite a polar approach though. I think there is a place for frameworks because of TTM but you do need to take the time to understand how they and how the underlying technologies work.
Working this way has stopped me from programming by coincidence

Collapse
 
steelraiden profile image
steelraiden

thanks. I'm endlessly fighting against the opposite theory, i'm tired of people who say: "why do you reinvent the wheel?" I don't want a car. I want a damn bike. I don't want to destructure a car to get a bike. I know well how to use javascript, css or html. And I hate jquery. I understand "ajax" is not "jquery". I know what "querySelector" is. I don't need 10 levels of abstraction just to write some text in a div.

Collapse
 
augmentedjs profile image
Bob Warren

Very true and great to see someone say this. Even if a bit harsh. I’m an author of a framework and agree as my framework is an extension vs a abstraction. But I built it for use as an extra to fundamentals vs replacement.

But let’s talk about the elephant in the room, hiring.. recruiters and hiring managers value framework proficiency over fundamentals. Most won’t even look at a resume without react or angular. They won’t even care if you can’t spell javascript if you can speak to react apis or some basic concepts. Sorry but this is “our” fault as a js community. I don’t have answers or a solution but just something to think about.

Collapse
 
budibase profile image
Budibase

Your development workflow depends on the project. If you have lots of time and resource, build from scratch. Less time, use a framework. I feel there's an additional layer to this with low code platforms and web app builders such as Budibase or even no code platforms such as Bubble.

Collapse
 
dcook profile image
Dan Cook • Edited

In regards to missing deadlines, etc, if you don't use frameworks: No, it would actually be faster, and the code would be smaller, because you can design it intentionally (more on this in a bit).

There is skill in knowing when (for each thing or at each layer) to use a well designed tried and true library versus rolling your own, but in either case that's about composable units that you use to fill in holes of meaning (aka abstractions) in your program.

With frameworks, it's the reverse: You fill in the holes of something that's not the thing you are designing (how could it be?), and which must deal with 1000 other things that do not apply to your project, but affect what you get and how you must use it.

In either case, the software being developed exists solely to model and enact some specific human value, which must inevitably be designed and delivered.

So the real problem is actually not about frameworks per se, but that that design is rarely ever direct or intentional. Instead you get (in either case) a mess of mechanisms & patterns from which the desired model/behavior is supposed to emerge (e.g. by slicing it up among these things and rigging it to trigger in some clever way). It doesn't have to be either a bunch of kooky pattern(s) and mechanisms or a framework that does it for you. Just regular old programming paraphernalia, and good old abstractions of the actual human value.

Any decent program can be built on a simple foundation of abstractions that are fairly 1:1 with the human understanding of what the software is, and what it does (which are two separate things, btw). And those upon lower level abstractions, etc. But at each level, you are making components that compose like libraries, NOT a framework, and not a clever wire-up of a bunch of "patterns" (e.g. AOP).

But as soon as you break any of those rules, you get an incoherent mess. And unfortunately this stuff (which should be basic fundamentals) is not taught or understood very well, and many programming languages, paradigms, patterns, tools, and frameworks violate and/or encourage you to violate one or more of these.

And so frameworks only solve an artificial problem, while making it more impossible to address the fundamental problems they fail to solve, because the backbone of your software is now this framework instead of a codafied model of the value it's supposedly designed to deliver.

Collapse
 
gregorgonzalez profile image
Gregor Gonzalez

I got the idea. When I started in web development was from zero and using windows notepad. Learned the basics and much more, I build what I want and exactly what I want.

My friends started with dreamweaver using the design tool without coding and everything was a mess.

In every project I reinvented the wheel in many forms and making mini-frameworks. using frameworks I learned a lot more complex things, also frameworks doesn't helps, you have to do the work anyway.

Where I work they do a test in the interview, a simple small crud, I was like "that's all?" But a friend only uses frameworks, she didn't know how to make a db connection, a crud or pagination, but she is an expert in many frameworks and she work really well and fast.

So It's important to know the basics and then learn a framework. I love to code from scratch and love frameworks too.

Collapse
 
devuniverse profile image
devuniverse

Guy A: 12 = 4 x 3
Lady B: 12 = 6+6
Guy C: 12 = 22 + 2*3 + 2

Framework noob : C is definitely simpler,better, and more elegant than B and A because I can clearly see the Quadratic property in there!

Collapse
 
gypsydave5 profile image
David Wickes

😂

Collapse
 
hyperpress profile image
John Teague • Edited

I write things all the time without a "framework." And there are other things I use a Library with. And yet there are large multi person, multi team projects where using Angular, or Polymer or Golang or some other framework is smart. It's more about your willingness and ability to build and choosing smart tools to achieve and then maintain the objective. IMO.