跳到主要内容

React

创建项目

npx create-react-app react-learning --template typescript

其中的react-learning是项目名字

启动项目:

cd  react-learning
npm start

修改默认端口:

在src下面新建一个.env.development的文件,里面写上

PORT=7070