• React学习笔记_01


    使用Facebook的create-react-app快速构建React开发环境

    前言:

    create-react-app:来自Facebook官方的零配置命令行工具

    create-react-app是来自于Facebook出品的零配置命令行工具,能够帮你自动创建基于Webpack+ES6的最简易的React项目模板,有助于初学者快速上手实践。安装create-react-app的方式也非常简单,可以直接使用npm命令进行全局安装。

    npm install -g create-react-app
    
    create-react-app my-app
    cd my-app/
    npm start
    

    执行完上述命令之后,你可以直接打开http://localhost:3000,即可以看到你React APP的运行效果。此时也是处于开发模式下,如果你要进行发布,则使用npm run build进行编译。  

    create-react-app生成的目录格式如下所示:

    my-app/
      README.md
      index.html
      favicon.ico
      node_modules/
      package.json
      src/
        App.css
        App.js
        index.css
        index.js
        logo.svg
    

    如果你是使用npm start来启动配置,那么自动会进入开发模式,此时热替换是处于自动激活状态,你也可以实时地在界面或者命令行中看到错误提示:

    如果你使用npm run build来编译得到生产环境,此时代码会被编译到build目录下,此时会自动将整个应用打包发布,它会自动使用Webpack控件进行优化与压缩。  

  • 相关阅读:
    struts tomcat 中文乱码解决
    struts 2 自定义模板
    xsd 生成 xsd 文件为类文件
    struts2 从 action 到 jsp 页面
    根据查询生成简单得临时表
    DBGridEh 提示 Incompatible types
    ubuntu 收集的命令
    sp_executesql 使用
    arcims [ERR0134] Requested Service is not available 错误
    mysql 备份还原数据
  • 原文地址:https://www.cnblogs.com/mmzuo-798/p/7826470.html
Copyright © 2020-2023  润新知