/create-react-application

A lightweight program for establishing react development environment.

Primary LanguageJavaScriptMIT LicenseMIT

create-react-application

npm npm

create-react-application is a lightweight program for establishing react development environment. It's a little work after learning the source code of create-react-app, just for fun!

Get Started

Installing create-react-application globally:

npm i create-react-application -g

or locally:

npm i create-react-application -D

then establish the development environment:

create-react-application <your-project-name>

when it done ,you can start your local server:

npm run start

or build your app:

npm run build

Hope you enjoy it!