コンテンツにスキップ

create-remix (CLI)

このコンテンツはまだ日本語訳がありません。

create-remix

create-remix CLI 将创建一个新的 Remix 项目。无需传递参数,此命令将启动交互式 CLI 来配置新项目并将其设置在给定目录中。

Terminal window
npx create-remix@latest

您可以选择将所需的目录路径作为参数传递:

Terminal window
npx create-remix@latest <projectDir>

默认应用程序是使用内置 Remix App Server 的 TypeScript 应用程序。如果您希望基于其他设置创建应用程序,则可以使用 --template 标志:

Terminal window
npx create-remix@latest --template <templateUrl>

要获取可用命令和标志的完整列表,请运行:

Terminal window
npx create-remix@latest --help

包管理器

create-remix 也可以使用各种包管理器来调用,让您可以选择 npm、Yarn、pnpm 和 Bun 来管理安装过程。

Terminal window
npm create remix@latest <projectDir>
# or
yarn create remix@latest <projectDir>
# or
pnpm create remix@latest <projectDir>
# or
bunx create-remix@latest <projectDir>

create-remix --template

有关可用模板的更全面指南,请参阅我们的 模板页面

有效模板可以是:

  • GitHub repo 简写 — :username/:repo:username/:repo/:directory
  • GitHub repo(或其中的目录)的 URL — https://github.com/:username/:repohttps://github.com/:username/:repo/tree/:branch/:directory
  • 使用此格式时,分支名称(:branch)不能包含 /,因为 create-remix 无法区分分支名称和目录路径
  • 远程 tarball 的 URL — https://example.com/remix-template.tar.gz
  • 文件目录的本地文件路径 — ./path/to/remix-template
  • tarball 的本地文件路径 — ./path/to/remix-template.tar.gz
Terminal window
npx create-remix@latest ./my-app --template remix-run/grunge-stack
npx create-remix@latest ./my-app --template remix-run/remix/templates/remix
npx create-remix@latest ./my-app --template remix-run/examples/basic
npx create-remix@latest ./my-app --template :username/:repo
npx create-remix@latest ./my-app --template :username/:repo/:directory
npx create-remix@latest ./my-app --template https://github.com/:username/:repo
npx create-remix@latest ./my-app --template https://github.com/:username/:repo/tree/:branch
npx create-remix@latest ./my-app --template https://github.com/:username/:repo/tree/:branch/:directory
npx create-remix@latest ./my-app --template https://github.com/:username/:repo/archive/refs/tags/:tag.tar.gz
npx create-remix@latest ./my-app --template https://github.com/:username/:repo/releases/latest/download/:tag.tar.gz
npx create-remix@latest ./my-app --template https://example.com/remix-template.tar.gz
npx create-remix@latest ./my-app --template ./path/to/remix-template
npx create-remix@latest ./my-app --template ./path/to/remix-template.tar.gz

create-remix --overwrite

如果 create-remix 检测到模板和您创建应用程序的目录之间存在任何文件冲突,它将提示您确认是否可以用模板版本覆盖这些文件。您可以使用 --overwriteCLI 标志跳过此提示。

å