Gregor@gregtech.eu to Ask Lemmy@lemmy.world · 16 days agoWhat is the current state of webasm?message-squaremessage-square11fedilinkarrow-up143arrow-down10file-text
arrow-up143arrow-down1message-squareWhat is the current state of webasm?Gregor@gregtech.eu to Ask Lemmy@lemmy.world · 16 days agomessage-square11fedilinkfile-text
minus-squarePraise Idleness@sh.itjust.workslinkfedilinkEnglisharrow-up8·edit-212 days agodeleted by creator
minus-squarespacecadet@lemm.eelinkfedilinkarrow-up6·16 days agoJS is slow, but I program Rust and Scala. Every internal app at my company is react based and I spend most my time waiting for that bloated framework to load a simple table. It can take seconds to load a 20 route paginated table from source.
minus-squareRain World: Slugcat Game@lemmy.worldlinkfedilinkEnglisharrow-up4·15 days agoreact is slow
minus-squarexigoi@lemmy.sdf.orglinkfedilinkEnglisharrow-up1·edit-215 days agoJavaScript is slow if you need to do things that JavaScript can’t do, such as lots of stack-allocated objects/arrays (in JavaScript you have to heap-allocate them) hash maps with non-primitive types as keys (in JavaScript you have to serialize them to a string) count trailing zero bits (in JavaScript you have to use a lookup table)
deleted by creator
JS is slow, but I program Rust and Scala. Every internal app at my company is react based and I spend most my time waiting for that bloated framework to load a simple table. It can take seconds to load a 20 route paginated table from source.
react is slow
JavaScript is slow if you need to do things that JavaScript can’t do, such as