On the current typescript / anti-typescript internet drama I saw someone mention javascript without a build step.

Do you think we’re already there?

Last time I attempted it:

  • there were too many libraries I couldn’t import
  • JSX (using babel) had a warning saying you shouldn’t do it in the browser for production
  • there was some advice against not using a bundler, because several requests for different .js files is slower and bigger than a bundled package
  • @Swiggles
    link
    1410 months ago

    Why though? I think I am missing the point, but I don’t see the problem with having a build step in your projects. Especially for frontend it is not just JavaScript, but things like Sass/SCSS to consider etc.

    • @jeffhykin@lemm.ee
      link
      fedilink
      11
      edit-2
      10 months ago

      When there’s no build step, all the time is spent coding. None of it is spent configuring or setting up.

      The hardest part of any software class in my experience is the triple combo of:

      • installation
      • “well it works on my machine” and
      • “well this code worked for last semester’s class”

      When I have students start off editing one html file using pinned URL imports, the reliability is just insane. People might claim “installing typescript is reliable” but doesn’t even come close to the reliability of not having a build step at all. No build step Just Works™, no M1 Mac edgecases, no npm audit, no rm rf node_modules.

      • @Swiggles
        link
        810 months ago

        You always have linter steps, testing etc and a competent developer should be able to deal with all that. Of course you don’t start with all this with new students, but I don’t think that is what this post is about.

        • @jeffhykin@lemm.ee
          link
          fedilink
          3
          edit-2
          10 months ago

          Sure, all I’m saying is every layer has major cost, and JS development has a lot of layers. Corporate websites can financially and time-wise afford that complexity cost when the benefits are scaled across millions of users.

          But its a problem when the first result of YouTube tutorials for a one page To-do app uses a pipeline as conceptually* deep as:

          • name resolution (node modules and unpinned versions)
          • then compiling uncompiled dependencies
          • then Vue/Sevlte to TS or JS + source maps
          • then TSX to TS
          • then TS + config options + feature flags to JS+source map
          • then JS transpile CommonJS to ES imports
          • then JS through babel for polyfills (and more source maps)
          • then JS through tree shaking
          • then JS through an uglifier (and more source maps)
          • then combine JS into one file of JS (more source maps)
          • then hydration for SSR
          • then start a hot reloading dev server
          • then user can render

          I think OP is asking if it’s possible for a good (no jQuery, no global varnames, etc) Todo app to work without needing all that.

          • @Swiggles
            link
            110 months ago

            And the simple answer is no. You can remove a layer here and there, but this is what the modern dev environment looks like.

            I mean sure you can implement all that yourself and carry all the extra cognitive load, but it is not productive to even skip babel or so. There is no point, but the challenge.

            Of course it is a bit more complicated to pick the right tools and you don’t have to use everything, but that’s a whole different discussion.

            • @jeffhykin@lemm.ee
              link
              fedilink
              2
              edit-2
              7 months ago

              I would disagree.

              There’s more to software than big corporate websites or massive FOSS projects. I’ve made tons of little one-html-file sites, like an inflation-adjusted income calculator, a scheduling app I’ve used every week for 4 years, a chemistry converter/calculator for a class I was in, even my resume site is just a single html file. Not only that but most of my published deno modules are nothing more than a main.js, a readme, and a gitignore (no package.json, no node_modules, no install step).

              You don’t need tests, and a linter, and babel, and tree shaking, and JSX, and typescript, and souce maps just to make a resume site, or an infographic, or a one-off internal dashboard, or a simple blog, or a restraunt menu. Modern ES http imports and modern JS tooling is enough.

              • @Swiggles
                link
                1
                edit-2
                10 months ago

                None of the tools are really made for the most trivial use cases though. Although it doesn’t take much effort to set everything up in a simple project I would probably also skip most of it. But this discussion about tiny one off projects is kinda pointless as you don’t have many of the problems to solve anyway.

                I implemented a reddit frontend (kiosk mode) a while back using only vanilla JS for fun, because a previous implementation by someone else broke. There was not really a point though as it wasn’t even simpler than using the proper tools. It was just for the hell of it, but nowhere close to a “real” project.

              • @sacredfire@programming.dev
                link
                fedilink
                1
                edit-2
                10 months ago

                For sure this is true, but at that this point for simple pages like that, most people will just use some sort of lowcode or no code cms like WordPress or square space etc. So for most jobs that are in web development space we’re talking about SAAS/PAAS apps, very complex media sites like Netflix/YouTube, or stuff in the financial sector. In fact I work for a company that makes a CMS just so that other corporate companies can publish their relatively simple PR websites using a low code solution, but the CMS its self is complicated af and I honestly can’t even begin to untangle all the stuff going on.

      • Aloso
        link
        fedilink
        510 months ago
        • Svelte/Vue/React components need to be compiled
        • JavaScript should be minified if the project has a significant size
        • File names should have a content hash, so they can be cashed in the browser
        • Even with HTTP/2, there’s still a case to be made for bundling hundreds or thousands of JS modules into a single file for better performance
        • Bundlers give you a dev server with live reload and hot module replacement for great developer experience
        • Setting up Vite is really easy and requires minimal configuration (compared to Webpack, for example)
    • @foobaz@lemmy.world
      link
      fedilink
      310 months ago

      I switched from sass to tailwind a couple month ago and fucking love it. Highly recommend to give it try. Still requires a build step to trim out unused utility classes.