React 创建 js 与 ts 项目

一、npx 创建

  • 创建 js 工程

    $ npx create-react-app demo
    
  • 创建 ts 工程

    $ npx create-react-app demo --template typescript
    

二、npm 创建

  • 全局安装 create-react-app

    # 如果之前安装过,可先移除,保证最新版本
    $ npm uninstall -g create-react-app
    
    # 安装
    $ npm install -g create-react-app
    
  • 创建 js 工程

    $ create-react-app demo
    
  • 创建 ts 工程

    $ create-react-app demo --template typescript
    

猜你喜欢

转载自blog.csdn.net/zz00008888/article/details/129969090