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
- Host: GitHub
- URL: https://github.com/hong-junhyeok/create-react18-boilerplate
- Owner: Hong-JunHyeok
- License: mit
- Created: 2022-03-29T23:55:50.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-14T21:36:51.000Z (almost 2 years ago)
- Last Synced: 2024-10-30T01:20:42.285Z (over 1 year ago)
- Topics: cli, npm-packages, react, react18, yarn-package
- Language: JavaScript
- Homepage: https://react18-boilerplate.vercel.app
- Size: 373 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://abit.ly/cli-npm-link)
[](https://react18-boilerplate.vercel.app/)


# 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
```