Should create in named folder, not current folder
See original GitHub issuecreate-react-app (and most other generators) will require a folder to generate into so you don’t accidentally fill your root directory with a bunch of files. Should be npx create-ink-app my-app
to create the app at the directory my-app
Issue Analytics
- State:
- Created 4 years ago
- Reactions:7
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to create a React app directly in the current folder
The current directory must: contain only URL friendly characters; no capital letters. E.g., current directory cannot be named "React App". It ...
Read more >Provide a way to generate a new project in an existing directory
Work around i've found is to be one level higher then the directory you want. Ex: -develop (here) -- project_folder (where you want...
Read more >Class Folder | Apps Script - Google Developers
Method Return type Brief description
getAccess(email) Permission Gets the permission granted to the given user.
getAccess(user) Permission Gets the permission granted to the given user.
getDateCreated()...
Read more >Working With Files and Directories – The Unix Shell
Solution. No. While this would create a file with the correct name, the incorrectly named file still exists in the directory and would...
Read more >Get current folder name by a DOS command? - Super User
I like the link and the suggestion but when i put that in a batch file I get an immediate closing of the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Agreed, and if the developer wants to scaffold the app in the current working directory (after
mkdir my-app && cd my-app
for example) they still can by callingnpx create-ink-app .
(the.
referring tomy-app
in this case).@vadimdemedes OK. I have another active PR for you https://github.com/vadimdemedes/create-ink-app/pull/5 .
For less conflict in PR, we can solve #5 first.