cm0002@piefed.world to Programmer Humor@programming.devEnglish · 1 day agoYou typical Node projectlemmy.mlimagemessage-square64fedilinkarrow-up1517arrow-down18 cross-posted to: programmerhumor@lemmy.ml
arrow-up1509arrow-down1imageYou typical Node projectlemmy.mlcm0002@piefed.world to Programmer Humor@programming.devEnglish · 1 day agomessage-square64fedilink cross-posted to: programmerhumor@lemmy.ml
minus-squareNewDark@lemmings.worldlinkfedilinkarrow-up40·22 hours agoIf you import 1% of your module code, you only compile the actual used code. Tree shaking is removing dead code paths that aren’t used.
If you import 1% of your module code, you only compile the actual used code. Tree shaking is removing dead code paths that aren’t used.
Ah ok gotcha