Sunday 28 January 2024

ReactJS Name can no longer contain capital letters | Kebab Case for Proj...



Cannot create a project named "MyApp" because of npm naming restrictions: Name can no longer contain capital letters


Solution1:
Project name can be in lowercase
Example : 
npx create-react-app myapp




Solution2:
Project name can be in kebab case
Example : 
npx create-react-app my-learning

What is Kebab Case?
Kebab case is a way of writing phrases without spaces, where spaces are replaced with hyphens -, and the words are typically all lower case.
“my project” would be written as “my-project”