-
-
Notifications
You must be signed in to change notification settings - Fork 27.2k
Closed
Labels
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-appv.s.react-native-cli - command it self: one including
initand one not - dev process:
create-react-appuses npm scripts whilereact-nativeuses 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?