Skip Navigation

Are we ready for javascript without a build step on the front end in 2023?

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
48 comments
  • Yes. You can have reasonable load times using JS with no bundler. There are some notes though:

    1. JSX isn't JavaScript, you will need to process these files (note: You can write React fairly reasonably without JSX).
    2. TypeScript won't work because it isn't JavaScript. I would only want to use raw JavaScript on the most basic of projects.
    3. A bundler/compressor is still going to reduce load times. Especially if you like lots of small files.
    4. Caching will be a nightmare if you aren't doing version-based naming.
  • I don't do front end work so I don't know how all the terms are used. If by build step you mean any sort of CI process then I would say no, I think automated tests are important and should be ran before pushing.

    If you just mean some sort of transformation, transpilation, bundling, etc. then I don't know enough to answer. My gut feeling is that the question is framed incorrectly. Many of these things were made as workarounds for various problems (or to make things easier). If you don't have those problems then you don't need those solutions. It doesn't have anything to do with progress (as in what year it is). Originally JavaScript was just plain old JavaScript. If it worked then it can work now. If you need the solutions people have made to get around limitations and short comings and vanilla JavaScript can't do it then you'll still need those solutions.

48 comments