cm0002@piefed.world to Programmer Humor@programming.devEnglish · 4 days agoYou typical Node projectlemmy.mlimagemessage-square67linkfedilinkarrow-up1582arrow-down18
arrow-up1574arrow-down1imageYou typical Node projectlemmy.mlcm0002@piefed.world to Programmer Humor@programming.devEnglish · 4 days agomessage-square67linkfedilink
minus-squareNewDark@lemmings.worldlinkfedilinkarrow-up42·4 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