begginer
begginer

Reputation: 83

Why i need to install npm for react native app

I am learning react native app. My question is "Why do I need to install npm for react native app?", beacuse I think it will install through play store and apple store as a form of bundled apk on user device. So I am unable to understand.

Upvotes: 0

Views: 42

Answers (1)

Quentin
Quentin

Reputation: 943142

The development tools depend on Node.js and use modules from NPM.

While React Native gets bundled into an APK, it still uses JavaScript and modules from NPM internally.

Upvotes: 3

Related Questions