美文网首页
0.4 Installing React 安装React

0.4 Installing React 安装React

作者: 人头原子弹 | 来源:发表于2017-03-10 23:18 被阅读0次

    We recommend using Yarn or npm for managing front-end dependencies.

    我们建议使用Yarn或npm来管理前端依赖关系。

    If you're new to package managers, the Yarn documentation is a good place to get started.

    如果你才开始接触包管理器,那么Yarn文档是作为开始的好地方。

    To install React with Yarn, run:

    使用Yarn安装React:

    yarn init
    yarn add react react-dom

    To install React with npm, run:

    使用npm安装React:

    npm init
    npm install --save react react-dom

    Both Yarn and npm download packages from the npm registry.

    yarn和npm都从npm工具站下载到包。

    相关文章

      网友评论

          本文标题:0.4 Installing React 安装React

          本文链接:https://www.haomeiwen.com/subject/icoygttx.html