|
|
|
|
|
by fortytw2
1977 days ago
|
|
I used to use mithril for almost every new project I'd start, but I've switched over to using React w/ Hooks for just about everything for two main reasons: - toolchain support is a lot less finicky and better supported (you can use parcel and it "just works")
- should I need to bring in a obnoxious third party library, it's far more likely to exist in a react world than mithril If you're just building something small / on your own, mithril is definitely worth a shot though, it's relatively pleasant to use and packs in some very handy XHR related helpers |
|
I've also seen cases where people were not aware that high quality vanilla libs exist, e.g. react-dnd vs dragula
There are a lot more wrapper libs for react, that is definitely true, but FWIW, I've come to despise them. Often you end up running into governance/versioning issues (e.g. one moving part releases a new version but you're stuck with the old one because a wrapper author doesn't have time to fix the breaking change, or are MIA, etc), or there are missing/broken pass-through options or whatever...