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

https://github.com/hong-junhyeok/create-react18-boilerplate

🆕 Create easy and simple React18 boilerplate
https://github.com/hong-junhyeok/create-react18-boilerplate

cli npm-packages react react18 yarn-package

Last synced: about 1 year ago
JSON representation

🆕 Create easy and simple React18 boilerplate

Awesome Lists containing this project

README

          

[![NPM](https://img.shields.io/badge/NPM-link-red)](https://abit.ly/cli-npm-link)
[![Docs](https://img.shields.io/badge/Docs-link-blue)](https://react18-boilerplate.vercel.app/)

![gradient (13)](https://user-images.githubusercontent.com/48292190/161219484-1b1ef1c7-0933-4a9d-8e98-64d759f2ba15.png)

![](https://media2.giphy.com/media/G0fSY3gyRigBfHSVi3/giphy.gif?cid=790b7611a47f207f8a29e4d7ae9365438a50c88a0c26db88&rid=giphy.gif&ct=g)

# Description

> The repository contains Docs that tell you what features have been added to React 18, and a CLI that allows you to build apps quickly and easily

# Installation

React 18 Boilerplate provides a CLI for building apps.

```shell
# When using NPM
npm install -g create-react18-boilerplate
# When using yarn
yarn global add create-react18-boilerplate
```

You can run a script with npx

```shell
npx create-react18-boilerplate
```

# Usage

```shell
mkdir [project_name]
cd [project_name]
create-react18-boilerplate # Create a project when entering a command
```

# Scripts

CRB (create-react18-boilerplate) creates a webpack-based customizable project. The scripts below are basic functions and can be changed at any time.

## Build

```shell
npm run build
```

## Dev mode start

```shell
npm run dev
```