Yes you don’t need React for a static site. Is this news at this point? Also I find the colour scheme hard to read but maybe it’s just me.
[flagged]
Look ma, no React: I recoded my portfolio site with vanilla everything
11–20 of 192 posts
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#12Earlier quoted context omitted.
[flagged]
React isn’t complicated. It’s not even considered a framework, it’s better described as a library! It’s a great way to templatize your code. Is it the only way? No. Do you even need to templatize your code? No.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#13Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#14Yes you don’t need React for a static site. Is this news at this point? Also I find the colour scheme hard to read but maybe it’s just me.
If you started your career in the last 5-10 years then yes, it might be news.
An entire generation of web developers has been trained to think that every app big and small needs to be a convoluted SPA. The results are a disaster.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#15Yes you don’t need React for a static site. Is this news at this point? Also I find the colour scheme hard to read but maybe it’s just me.
> Is this news at this point? If you started your career in the last 5-10 years then yes, it might be news. An entire generation of web developers has been trained to think that every app big and small needs to be a convoluted SPA. The results are a disaster.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#16The reason react was developed is mostly null at this point. Modern javascript is so fast and plesant it's hard to imagine many real reasons you can't stay entirely within vanilla.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#17A better education path (in a bootcamp, university, book, youtube, whatever) would start with the fundamentals and build it from the ground up... not the other way around.
(I just realized how lucky I am for being taught in the best possible order, from the ground up... first the basics... and how so many people didn't have this opportunity)
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#18Earlier quoted context omitted.
React isn’t complicated. It’s not even considered a framework, it’s better described as a library! It’s a great way to templatize your code. Is it the only way? No. Do you even need to templatize your code? No.
Stop it. You know what they mean.
React is not large, is of moderate complexity (most of the complexity of "a React app" lives well outside of React itself), and can be stripped down to a fully static templating language without much effort. As I've linked elsewhere, I turned React into an email templating engine once because I don't like Handlebars; rendering JSX as static, no-JS HTML is a one-liner when you throw it a React component.
Using React for a static website is totally fine.
So is not using it.
Being weird about it is not fine.
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#19Yes you don’t need React for a static site. Is this news at this point? Also I find the colour scheme hard to read but maybe it’s just me.
[flagged]
Re: Look ma, no React: I recoded my portfolio site with vanilla everything
#20Can I write a React app and recompile it as a vanilla? For example to take all involved parts of the library and not take the rest.