A CLI for bootstrapping Apiko projects
You should install the CLI globally using npm
or yarn
:
$ npm i -g @apiko/bootstrap-project
After that, bootstrap-project
command will be available for you.
Or use can use it directly running via npx
:
npx @apiko/bootstrap-project --help
Make sure to include the scope (@apiko
) when you're running using npx.
You can use react-native
(alias rn
) command to bootstrap React Native project.
$ bootstrap-project react-native <name>
Use --help
to see all available options:
$ bootstrap-project react-native --help
You can use expo
command to bootstrap Expo project.
$ bootstrap-project expo <name>
Use --help
to see all available options:
$ bootstrap-project expo --help
You can use create-react-app
command to bootstrap react (create-react-app) project.
$ bootstrap-project create-react-app <name>
Use --help
to see all available options:
$ bootstrap-project create-react-app --help
You can use react-native-lib
(alias rn-lib
) command to bootstrap React Native Library project with an optional example.
$ bootstrap-project react-native-lib <name> [options]
Use --help
to see all available options:
$ bootstrap-project react-native-lib --help
MIT - see LICENSE