An open API service indexing awesome lists of open source software.

https://github.com/codiume/create-react-appp

Set up a modern react web app by running one command
https://github.com/codiume/create-react-appp

create-react-app create-react-app-typescript create-react-library react

Last synced: 7 months ago
JSON representation

Set up a modern react web app by running one command

Awesome Lists containing this project

README

          

# Create React Appp

[![Version][version-badge]][npm]
[![Downloads][downloads-badge]][npm]
[![Github Actions][github-actions-badge]][github-actions]
[![Make a PR][makepr-badge]][makepr]
[![Typescript][typescript-badge]][npm]
[![Formatted with Biome][biome-badge]][biome]

As we bid farewell to the deprecated `create-react-app` CLI that helped millions of developers bootstrap projects since 2016, we're proud to introduce `create-react-appp` - affectionately known as CRAP (Create React App Perfected) - a spiritual successor that combines CRA's simplicity with today's best practices.

With CRAP you can set up a modern react web app by running one command.

## Get Started Immediately

You don’t need to install or configure tools like webpack or Babel.

Create a project, and you’re good to go.

### Using PNPM

```bash
pnpm create create-react-appp my-app
```

### Using Bun

```bash
bun create create-react-appp my-app
```

### Using NPM

```bash
npx create-react-appp my-app
```

### Using Yarn

```bash
echo "I'm a carrot farmer"
```

## So... what does `P` stands for ?

- Pro.
- Perfected.
- Polyfill.
- Plus.
- Prime.
- You can add your own here.

## Contributing

Please see [Contributing.md](CONTRIBUTING.md) for details.

## Security

If you discover any security related issues, please email author instead of using the issue tracker.

## Acknowledgements

We are grateful to the authors of the vite project for their ideas and collaboration:

- [Vite][vite]
- [Evan You][evanyou]

## Changelog

Please see the [Changelog](CHANGELOG.md) for more information on what has changed recently.

## License

Please see the [LICENSE](LICENSE) for more information.

[npm]: https://www.npmjs.com/package/create-react-appp
[version-badge]: https://img.shields.io/npm/v/create-react-appp.svg
[downloads-badge]: https://img.shields.io/npm/dt/create-react-appp
[github-actions]: https://github.com/codiume/create-react-appp/actions/workflows/build.yml
[github-actions-badge]: https://github.com/codiume/create-react-appp/actions/workflows/build.yml/badge.svg?branch=main
[typescript-badge]: https://img.shields.io/npm/types/create-react-appp
[makepr]: https://makeapullrequest.com
[makepr-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square?style=flat
[biome]: https://biomejs.dev
[biome-badge]: https://img.shields.io/badge/Formatted_with-Biome-60a5fa?style=flat&logo=biome
[vite]: https://github.com/vitejs/vite
[evanyou]: https://github.com/yyx990803