Creating app in the root of a folder

Is there a way that I can install, let’s say, a React app in the root of a folder?

cd projects
cd myApp
npx create-react-app

I would like to create the React app in the root of myApp folder w/o adding an extra folder to it, i.e. npx create-react-app someApp, my folder structure then would contain the someApp folder withing the myApp folder and I am trying to avoid that.

Is this possible?

npx create-react-app .

1 Like

Thanks, that worked. Hope it’s the same with other frameworks as well.