this post was submitted on 10 Sep 2023
113 points (98.3% liked)
Out of the loop
11022 readers
8 users here now
A community that helps people stay up to date with things going on.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I usually write Typescript with Vue and SSR so my server and client are using the same tooling. If I was writing a basic frontend with minimal JavaScript I would just (and have) use jsdoc for typing.
But let's be fair, what you mentioned as dependencies are development dependencies and don't impact the end user (outside of poorly optimized build systems causing issues). Build systems can have some great benefits. Such as reducing file size by utilizing methods such as tree shaking to prune out the unused classes in a CSS library.
It just comes down to choosing the tools to suit the job. Sure, you can use a table saw to cut a stick but it's probably easier just to use a handsaw. Whereas if you're cutting a large plywood board you could make do with a handsaw but it'll take longer and the result might not be pretty.
They do if I the developer am spending time maintaining my dependencies rather than implementing feature X that the end user wants.
As does not having multiple distinct yet interacting build systems in one project.
I have yet to have a use for any CSS libraries. Maybe that has more to do with the problem domain in which I write than anything. Maybe some day I'll run into a situation where I feel I'd be better served using a CSS library, but it hasn't happened yet.