React JS Folder structure and Files | React JS | EP -2

Опубликовано: 13 Ноябрь 2024
на канале: JAS ACADAMY
226
13

In this lecture we are explain what are the default files and folders structure of a Reactjs application.Let's go through each of these and understand the purpose of each of the generated file/folder.

build represents the path to our final production build. This folder would actually be created after we run the npm build.

We can see all the "dependencies" and "devDependencies" required by our React app in node_modules. These are as specified or seen in our package.json file. If we just run the ls -l command, we'll see almost 800 sub-directories. This directory gets added to .gitignore so it does not really get uploaded/published as such. Also, once we minimize or compress our code for production, our sample app should be less than 100 KB in size.



https://www.pluralsight.com/guides/fi...

#reactjs #nodejs #reactjstutorial #reactproject