WEB SYSTEMS UNIT 3-4

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:46 AM on 9/23/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

21 Terms

1
New cards

Components

reusable UI elements

2
New cards

Pages

complete views or screens

3
New cards

Layouts

structures shared by multiple pages

4
New cards

Routes

defines how users navigate between pages

5
New cards

React

a JavaScript library for building user interfaces, particularly for web applications.

6
New cards

npx create-react-app my-app

Command to create new react application

7
New cards

cd my-app

command to navigate to project directory

8
New cards

npm start

command to start development server

9
New cards

npm install

Command to install project dependencies.

10
New cards

npm run build

command that creates production build

11
New cards

src/

contains the main source code of the application

12
New cards

public/

contains static files; publicly available

13
New cards

app.js

contains main application component

14
New cards

index.js

entry point that renders the react application

15
New cards

package.json

contains project info, dependencies and scripts

16
New cards

JSX

syntax that allows developers to write HTML-like elements inside Javascript.

commonly used when defining structure of react components

17
New cards

React Router DOM

a library used to implement navigation and routing

18
New cards

npm install react-router-dom

command to install react router DOM

19
New cards

Route

defines URL path and its corresponding component

20
New cards

Link

react router component used for navigation

21
New cards

npm

Package manager for JavaScript libraries.