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.

  • 相关阅读:
    JS&和&&-T
    PHP Xdebug
    PHP非对称加密
    JavaScript:弹框输出
    JavaScript:函数闭包
    JavaScript:函数
    JavaScript:正则表达式 & 日期对象
    JavaScript: Math数学对象 & Number对象
    JavaScript: 数组
    JavaScript: 常用字符串API
  • 原文地址:https://www.cnblogs.com/Answer1215/p/5727846.html
Copyright © 2011-2022 走看看