# create-react-app-offline

> CRAO, a CLI that make react apps offline ASAP.

Latest version **1.2.1** (published 2023-01-21) · ISC license · 0 weekly downloads

## Install

```sh
npm install create-react-app-offline
pnpm add create-react-app-offline
yarn add create-react-app-offline
bun add create-react-app-offline
```

Provides the command `crao`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; large bundle.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2023-01-21 |
| First published | 2020-05-06 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 19 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Adil zakarya |
| Maintainers | baronsindo |
| Keywords | react, git, react-app, create-react-app, node, javascript |

## Links

- npm: https://www.npmjs.com/package/create-react-app-offline
- Repository: https://github.com/Baronsindo/create-react-app-offline
- Homepage: https://github.com/Baronsindo/create-react-app-offline#readme
- Issues: https://github.com/Baronsindo/create-react-app-offline/issues
- npm.io page: https://npm.io/package/create-react-app-offline

## Dependencies (8)

- [ora](https://npm.io/package/ora.md) ^4.0.4
- [boxen](https://npm.io/package/boxen.md) ^4.0.0
- [chalk](https://npm.io/package/chalk.md) ^2.4.2
- [clear](https://npm.io/package/clear.md) ^0.1.0
- [yargs](https://npm.io/package/yargs.md) ^13.2.4
- [figlet](https://npm.io/package/figlet.md) ^1.4.0
- [7zip-min](https://npm.io/package/7zip-min.md) ^1.1.2
- [progress-extract](https://npm.io/package/progress-extract.md) ^1.0.2

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.2.1 (latest) — 2023-01-21
- 1.0.3 — 2022-02-22
- 1.0.1 — 2020-05-07
- 1.0.0 — 2020-05-06

## README

## Create React App (Offline version - CRAO)
Create React apps with no build configuration offline every time.

### Installing the CLI 
first time you need to install the CRAO CLI via this command, then after you'il be able to create React apps offline.
```sh
npm install -g create-react-app-offline
```

### Usage
Very simple like drinking water
```sh
crao -n <app-name>
```
for example :
```sh
crao -n my-app
```

It will create a directory called `my-app` inside the current folder.<br>
Inside that directory, it will generate the initial project structure and install the transitive dependencies:

```
my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── index.css
    ├── index.js
    ├── logo.svg
    └── serviceWorker.js
    └── setupTests.js
```

No configuration or complicated folder structures, only the files you need to build your app.<br>
Once the installation is done, you can open your project folder:

```sh
cd my-app
```

Inside the newly created project, you can run some built-in commands:

### `npm start` or `yarn start`
 
Enjoy it.

---
_Source: https://npm.io/package/create-react-app-offline · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
