zoukankan      html  css  js  c++  java
  • [React] Set up React apps with zero configuration

    The React team has an official Command Line Interface (CLI) for building React projects called "Create React App"; in this lesson, we show how to use this tool to quickly set up new projects using the create-react-app {project-name}command. We then use the npm scripts that are provided: npm start to develop, npm run build to ship, and npm run eject to opt out of the abstracted tooling.

    The benefits of this tool are:
    - It's officially maintained by the React team; this means best practices out of the box
    - Zero config, one dependency
    - Config is abstracted so React team can make improvements under the hood and you get the new goodness for free
    - Clean command line output for errors
    - You can "eject" at any time if needed

    Install:

    npm install -g create-react-app

    Create a new app:

    create-react-app react-start

    Remove react-scripts:

    npm run eject

    This will remove the react-script and back to normal.

  • 相关阅读:
    VS2010 添加项目依赖
    人工鱼群算法 AFSA
    粒子群算法 PSO
    CUDA速度测试
    AGSO 萤火虫算法
    用于WTL工具栏的辅助类CToolBarHelper
    关于结构体内存对齐
    遗传算法 GA
    A*算法
    人工蜂群算法 ABC
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5727846.html
Copyright © 2011-2022 走看看