Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apiko-dev/bootstrap-project
A CLI for bootstrapping Apiko projects
https://github.com/apiko-dev/bootstrap-project
Last synced: about 2 months ago
JSON representation
A CLI for bootstrapping Apiko projects
- Host: GitHub
- URL: https://github.com/apiko-dev/bootstrap-project
- Owner: apiko-dev
- License: mit
- Created: 2019-02-28T13:31:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T15:06:03.000Z (about 2 years ago)
- Last Synced: 2023-02-27T07:07:46.698Z (almost 2 years ago)
- Language: JavaScript
- Size: 455 KB
- Stars: 7
- Watchers: 7
- Forks: 1
- Open Issues: 17
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# bootstrap-project CLI
> A CLI for bootstrapping Apiko projects
# Installation
You should install the CLI globally using `npm` or `yarn`:
```bash
$ 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`:
```bash
npx @apiko/bootstrap-project --help
```Make sure to include the scope (`@apiko`) when you're running using npx.
## Available commands
#### React Native
You can use `react-native` (alias `rn`) command to bootstrap React Native project.
```bash
$ bootstrap-project react-native
```Use `--help` to see all available options:
```bash
$ bootstrap-project react-native --help
```#### Expo
You can use `expo` command to bootstrap Expo project.
```bash
$ bootstrap-project expo
```Use `--help` to see all available options:
```bash
$ bootstrap-project expo --help
```#### create-react-app
You can use `create-react-app` command to bootstrap react (create-react-app) project.
```bash
$ bootstrap-project create-react-app
```Use `--help` to see all available options:
```bash
$ bootstrap-project create-react-app --help
```### Library
##### React Native Library
You can use `react-native-lib` (alias `rn-lib`) command to bootstrap React Native Library project with an optional example.
```bash
$ bootstrap-project react-native-lib [options]
```Use `--help` to see all available options:
```bash
$ bootstrap-project react-native-lib --help
```# License
MIT - see LICENSE