ReactJS - CLI 命令



React 有自己的命令行界面 (CLI) 命令。但是,这些 CLI 命令目前仅用于使用命令行创建 react 应用程序的合格版本。这将包含一个默认模板作为其设计,因此以这种方式创建的所有 react 应用程序都将具有很大的一致性,因为它们都具有相同的结构。

React 中的基本 CLI 命令

在本章中,让我们学习 Create React App 命令行应用程序中可用的基本命令。

创建新应用程序

创建 React App 提供了多种创建 React 应用程序的方法。

使用 npx 脚本。

npx create-react-app <react-app-name>
npx create-react-app hello-react-app

使用 npm 包管理器。

npm init react-app <react-app-name>
npm init react-app hello-react-app

使用 yarn 包管理器。

yarn init react-app <react-app-name>
yarn init react-app hello-react-app

选择模板

创建 React 应用程序使用默认模板创建 React 应用程序。模板是指具有某些内置功能的初始代码。npm 包服务器中有数百个具有许多高级功能的模板。Create React App 允许用户通过 -template 命令行开关来选择模板。

create-react-app my-app --template typescript

上述命令将从 npm 服务器使用 cra-template-typescript 包创建 react 应用程序。

安装依赖项

React 依赖包可以使用普通的 npm 或 yarn package 命令进行安装,因为 React 使用 npm 和 yarn 推荐的项目结构。

使用 npm 包管理器。

npm install --save react-router-dom

使用 yarn 包管理器。

yarn add react-router-dom

运行应用程序

React 应用程序可以使用 npm 或 yarn 命令启动,具体取决于项目中使用的包管理器。

使用 npm 包管理器。

npm start

使用 yarn 包管理器。

yarn start

要在安全模式 (HTTPS) 下运行应用程序,请设置环境变量 HTTPS 并将其设置为 true,然后再启动应用程序。例如,在Windows命令提示符(cmd.exe)中,以下命令设置HTTPS并启动应用程序为HTTPS模式。

set HTTPS=true && npm start