Home Videos Exercises MCQ Q&A Quiz E-Store Services Blog Sign in Appointment Payment

Files & Folders structure

Files & Folders structure React.


node_modules

This folder will contain all react js dependencies.


gitignore

This file is used by source control tool to identify which files and folders should be included or ignored during code commit.


package.json

This file contains dependencies and scripts required for the project.


src

src is one of the main folder in react project.


index.js

index.js is the file that will be called once we will run the project.


app.js

App.js is a component that will get loaded under index.js file. It will reflect if we do any change in app.js file HTML component and save it will reflect in localhost ://3000