First React

安装

  1. 安装 NPM (https://nodejs.org/en/download/)

  2. 切换到淘宝的 NPM 镜像

    npm install -g cnpm --registry=https://registry.npm.taobao.org
    npm config set registry https://registry.npm.taobao.org
    
  3. 安装 create-react-app 模块,快速构建 React 开发环境

    cnpm install -g create-react-app
    create-react-app my-app
    cd my-app/
    npm start
    
  4. 打开 http://localhost:3000/