Standard Way To Create React JS Fresh Project
As you know in programming world JavaScript is becoming quite famous programming language so in this blog we will discuss how we can create fresh project of ReactJS in standard way.
React JS - Education Funda |
~ $ npx create-react-app folder-name
~ $ npx create-react-app folder-name --template typescript
To do setup of license, .gitignore and code of conduct for new project we can do with NPX commands:
~ npx license mit (it will create open source license for your project)
~ npx gitignore node (it will create .gitignore file in your project automatically so you don't need to create it manually)
~ npx covgen your_email_id (it will create code of conduct file for your project)
Comments
Post a Comment