Home > other >  How to create react app with typescript using bun?
How to create react app with typescript using bun?

Time:07-11

How to create react app with typescript using bun

CodePudding user response:

Per the readme

> bun create react ./app
> cd app
> bun dev # start dev server

CodePudding user response:

To use create react app in bun use these commands bun create react ./react-app

react-app is application name you can choose whatever you want

cd react-app to enter in application folder

bun dev // start application

  • Related