React JS Course Content
React JS Course Content
Topic1 : Setup
1. Downloading node software
2. Downloading Visual Studio (VS) code
software
3. Uninstalling node software
4. Uninstalling VS code software
5. Installing node software and observing of
Auto Path updating
6. Installing VS code software and observing
of Auto Path updating
7. Observing of Auto Path Updates in the
environment variables
8. Checking versions of node, npm and VS
code.
9. Creating React project
10. Starting React project
11. Stopping React project
Topic2: Understanding the project content
12. Walking through the default
files/directories in the React project.
13. Understanding about project.json
14. Understanding software’s version
numbers
15. Understanding caret (^) symbol in the
version
16. Understanding node_modules
17. Understanding package-lock.json
18. Understanding .gitignore
19. Triggering nmp install (or) npm i
20. Understanding about public folder
21. Accessing files of public folder from the
browser
22. Create new files and folders in the public
folder and then accessing from a Brower
without restarting the application
23. What is the Welcome file
24. Understanding index.html
25. Making a request to un available
resources.
26. Renaming project’s title
27. Developer/Programmer code (src)
28. Understanding index.js
29. What is a component?
30. Different features in the web
component?
31. Different files in the Web component
32. Understanding default App component
33. Modifying App component
34. Using App component multiple times
35. Understanding index.css
36. Understanding usage of logo.svg
through import in the App.js.
37. Understanding Presentation portion in
the App component.
Topic3: Essential concepts of Javascript – part1:
38. Javascript let variable
39. Javascript var variables
40. Javascript const declaration
41. Javascript arrays
42. JSON object
43. Array of JSON objects.
44. Javascript function through declaration
45. Javascript functions through Expression
46. Javascript functions through arrow
47. Understanding export
48. Understanding default
49. Understanding import
Topic4: Implementing Javascript code and CSS in
the App component
50. Understanding javascript (programming)
portion in the app component
51. Declaring and using javascript variables
inside App component
52. Declaring , Defining and using javascript
functions inside App component
53. Declaring json object and using in the
app component
54. Declaring and using javascript arrays
inside App component
55. Using array’s map method
56. Using array’s forEach method
57. Using array of json objects
58. Understanding the usage of styles in the
App component from App.css
59. Difference between index.css and
App.css