cm0002@piefed.world to Programmer Humor@programming.devEnglish · 5 months agoYou typical Node projectlemmy.mlexternal-linkmessage-square63fedilinkarrow-up1405arrow-down15
arrow-up1400arrow-down1external-linkYou typical Node projectlemmy.mlcm0002@piefed.world to Programmer Humor@programming.devEnglish · 5 months agomessage-square63fedilink
minus-squareNewDark@lemmings.worldlinkfedilinkarrow-up29·5 months 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