JavaScript: Difference between revisions

From IndieWeb
(label it so the text jsbin is findable)
m ([tantek] added "2018-03-31 Criticism (of JS-centrism among other things) [https://www.sonniesedge.co.uk/talks/dear-developer Dear Developer, The Web Isn't About You]" to "See Also")
Line 43: Line 43:
* [[js;dr]]
* [[js;dr]]
* JSBin hosting challenges: https://remysharp.com/2015/09/14/jsbin-toxic-part-1
* JSBin hosting challenges: https://remysharp.com/2015/09/14/jsbin-toxic-part-1
* 2018-03-31 Criticism (of JS-centrism among other things) [https://www.sonniesedge.co.uk/talks/dear-developer Dear Developer, The Web Isn't About You]

Revision as of 02:31, 9 February 2019


JavaScript (JS) is a popular programming language due to its nearly ubiquitous availability in web browsers, and growing web server availability in the form of node.js.

Libraries

Generally useful libraries being developed by IndieWeb participants that run in Javascript:

Criticism

Sites break without Javascript

Javascript seems to have engendered web development methodologies that depend on it. Many sites seem to break without it, become inaccessible.

Although it is unlikely that visitors of your site still use a browser that does not support javascript as a technology, there are situations in which this is relevant to you as a webmaster.

See also: antipatterns

More Fragile Than HTML

Many sites now depend on Javascript to generate the page in a browser, rather than generating the page on the server and sending HTML. This is a more fragile approach:

Breaks Browser User Features

As illustrated by: https://twitter.com/gabrielgironda/status/721115498474270721

DEAR #FRONTEND DEVELOPERS: PLEASE STOP MAKING SITES WITH LINKS I CAN'T COMMAND-CLICK TO OPEN IN A NEW TAB. WHAT IS WRONG WITH YOU

Can Encourage Bad Engineering

As summarized by: https://twitter.com/fox/status/716879915333750784

I have seen the worst engineering in my career lately and I have one message:

STOP TRYING TO WRITE EVERYTHING FRONT-END IN JAVASCRIPT

See Also