cm0002@piefed.world to Programmer Humor@programming.devEnglish · 21 days agoYou typical Node projectlemmy.mlimagemessage-square57fedilinkarrow-up1561arrow-down17
arrow-up1554arrow-down1imageYou typical Node projectlemmy.mlcm0002@piefed.world to Programmer Humor@programming.devEnglish · 21 days agomessage-square57fedilink
minus-squareNewDark@lemmings.worldlinkfedilinkarrow-up43·20 days 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