cm0002@piefed.world to Programmer Humor@programming.devEnglish · 2 months agoYou typical Node projectlemmy.mlimagemessage-square60linkfedilinkarrow-up1566arrow-down17 cross-posted to: [email protected]
arrow-up1559arrow-down1imageYou typical Node projectlemmy.mlcm0002@piefed.world to Programmer Humor@programming.devEnglish · 2 months agomessage-square60linkfedilink cross-posted to: [email protected]
minus-squareNewDark@lemmings.worldlinkfedilinkarrow-up42·2 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