How to create a React app directly in the current folder ?

by Feb 1, 2023Reactjs

How do you create a React app directly in the current folder or in the same folder you are already in?

It is straightforward but sometimes it gets out of the mind.

The quick and fastest way.

Solution:

You can create a new React app in the current directory by writing . instead of a project name. Add

npx create-react-app . or

npx create-react-app@latest .

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *