torayeff
torayeff

Reputation: 9702

React Native node_modules folder size

After running:

react-native init FirstProject

I got node_modules folder with tons of modules and folder weighing about 139 MB.

Is it ok? Will it affect final application size?

Upvotes: 1

Views: 693

Answers (1)

Mihir
Mihir

Reputation: 3902

It's perfectly ok. Unnecessary modules will be stripped at the time of deployment/testing on device/emulator. You can check your app size to be sure.

Upvotes: 1

Related Questions