从0起步使用React搭建个人主页-01-环境准备
作者:互联网
用到的技术栈:
前端:React+create-react-app+redux+react-router+Antd
后台:Koajs+Mysql8.0+sequalize(ORM模型)+redis(数据缓存)
项目放于我的gitee,随缘更新,前端传送门:Excharhttps://gitee.com/exchar/homepage.git
后端传送门:
Exchar https://gitee.com/exchar/personal-home-page---koa.git
第一人称写代码?
一、安装create-react-app脚手架,创建前端项目
首先安装Nodejs,安装完成后记得替换npm源:
查看npm相关配置:
npm config get registry
设置为淘宝源:
npm config set registry https://registry.npm.taobao.org/
安装create-react-app:
npm install create-react-app -g
创建react项目:
create-react-app my-home-page 注意:项目名不能用驼峰,可以使用连接符'-'
二、目录结构
注:index.js为项目入口文件,App.js为提供的示例文件,开发时需要改造App.js,放置路由
三、基础准备,安装依赖、配置
1.安装sass预处理,需要安装node-sass
2.安装Antd组件库,npm install antd -S
3.释放配置文件,npm run eject
{[(-_-)(-_-)]},over。
标签:npm,react,01,app,gitee,React,个人主页,安装,create 来源: https://blog.csdn.net/weixin_44286800/article/details/121263601