1

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?

torayeff
  • 9,296
  • 19
  • 69
  • 103

1 Answers1

1

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.

Mihir
  • 3,812
  • 3
  • 25
  • 29