this post was submitted on 11 Sep 2023
32 points (80.8% liked)

Programming

16975 readers
1288 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

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
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 1 year ago

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.