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 while react-native uses custom ones like react-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?
I myself is used to the command
react-native init AwesomeProjectfor creating React Native projects, and nowcreate-react-appbrings up a new commandcreate-react-app my-appfor creating React DOM projects. I wonder what's the reasons for the two different command, and I see the differences as follows:create-react-appv.s.react-native-cliinitand one notcreate-react-appuses npm scripts whilereact-nativeuses custom ones likereact-native run-iosIs 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?