Closed
Description
I myself is used to the command react-native init AwesomeProject
for creating React Native projects, and now create-react-app
brings up a new command create-react-app my-app
for creating React DOM projects. I wonder what's the reasons for the two different command, and I see the differences as follows:
- CLI tool name:
create-react-app
v.s.react-native-cli
- command it self: one including
init
and one not - dev process:
create-react-app
uses npm scripts whilereact-native
uses custom ones likereact-native run-ios
Is it possible in the future to unite these two CLI tools and create a united one for all React related init process, which can be used for rendering to ios, Android, DOM, and can be customize by developer, who, for example, wants one for creating React apps that render to SVG?