top | item 21403688

(no title)

vinylkey | 6 years ago

> Don't use any javascript frontends.

I'm struggling to find the connection between a Javascript front end and content that has (to quote the article posted) "the voice of individuals"

discuss

order

amiga-workbench|6 years ago

Because getting content on the web is only as difficult as people make it, and beneath all the bloat of "modern front end development practices" there is still a simple set of tools to work with.

PinkMilkshake|6 years ago

Exactly. You can basically pick any subset of web technologies and just use those.

And honestly, when teaching the average person how to make a website, they should just be taught the minimum required to make a valid HTML document.

I think it's something like:

  <!DOCTYPE html>
  <title>My first webpage</title>
  Hello, World!

superkuh|6 years ago

If you use the same JS frontend as everyone else it isn't very individual and form constrains content. The reason people use JS frontends is because they're at work being paid to do it. Time and the ability for your coworkers to contribute matters. You don't have to bring these compromises forced on you at work to home.

krapp|6 years ago

>If you use the same JS frontend as everyone else it isn't very individual and form constrains content.

You seem to be confusing the implementation of a site with its content, and assuming that homogeneity of layout corresponds to homogeneity of content. It's an understandable bias to find in a community of programmers and web developers, but it isn't true.

The pages of a book are uniformly sized, generally speaking uniformly colored with one of a very narrow set of fonts and typefaces, spaced and typeset according to an industry standard - and yet this places no constraint at all on the nature of the content that can be displayed within those pages. In the same way, a website rendering content on the frontend rather than the backend is an implementation detail which has nothing to do with what content is rendered.

And even in the 90s, many sites looked similar. Rather than having standard templates focused around typography, people just copied what other sites were doing, using the same table-based layouts with black backgrounds and GIFS, and none of that necessarily made the content any better than what exists today.

danjac|6 years ago

> The reason people use JS frontends is because they're at work being paid to do it

And of course employability and the need for buzzwords on your resume.

kerkeslager|6 years ago

JavaScript is the first path down a road that leads to tracking and ads and optimization. It's too easy to think, "I'll just serve this JS library off X CDN" and voila, you've enabled someone to track your users. "No JavaScript" keeps you honest.