Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 803 Bytes

README.md

File metadata and controls

54 lines (35 loc) · 803 Bytes

React项目模板

详细搭建步骤:从零开始搭建一个React项目

安装

  • 把项目克隆到本地

    git clone https://github.com/shayeLee/react-template.git
    
  • 本项目使用gulp作为项目构建任务的管理工具,所以需要先全局安装gulp

    npm install -g gulp@3
    
  • 安装本地依赖包

    cd react-template
    
    npm install
    

如何使用

  • 启动开发服务器

    gulp dev
    
  • 打包生产环境代码

    gulp build
    

项目工程化特性

  • 自动化:webpack自动增量编译,浏览器热加载
  • 按需加载:import()动态加载模块
  • js编译器:babel
  • js代码检查:eslint
  • css编译器:less + sass + postcss
  • 代码压缩
  • 图片压缩