What is the difference between React Native and React?

后端 未结 30 2698
粉色の甜心
粉色の甜心 2020-11-28 00:22

I have started to learn React out of curiosity and wanted to know the difference between React and React Native - though could not find a satisfactory answer using

30条回答
  •  悲哀的现实
    2020-11-28 00:57

    1. React-Native is a framework for developing Android & iOS applications which shares 80% - 90% of Javascript code.

    While React.js is a parent Javascript library for developing web applications.

    1. While you use tags like , very frequently in React-Native, React.js uses web html tags like

      , which are only synonyms in dictionary of web/mobile developments.

    2. For React.js you need DOM for path rendering of html tags, while for mobile application: React-Native uses AppRegistry to register your app.

    I hope this is an easy explanation for quick differences/similarities in React.js and React-Native.

提交回复
热议问题