forked from Sharma-NareshIT/UIFullStack7PM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path01-24-2022-Notes
143 lines (64 loc) · 1.93 KB
/
01-24-2022-Notes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
Front End
- HTML
- CSS
- Bootstrap
- Sass
- JavaScript
- jQuery
- TypeScript
- Introduction to Angular and React.
Back End
-Node.js
-MongoDB
-Express
Setup Environment for Web Development
================================
1. Download and Install "node.js" on your PC.
- We are installing node.js for a package manager called NPM.
- Package Manager is a software tool used to download and install
various libraries required for project.
- There are various package managers
NPM
Yarn
Bower
NuGet
RubGems etc..
- NPM is a package manager comes with Node.js
www.nodejs.org
[download - 16.13.2]
2. Check the version of Node.js and NPM
C:\> node -v
C:\> npm -v
3. Download and Install "Visual Studio Code" editor
- Editor is a tool that provides an IDE [Integrated Development Environment]
- Building, Debugging, Testing and Deploying.
www.editorconfig.org
- Download from
https://code.visualstudio.com/
Note: Not Visual Studio - It is Visual Studio Code
4. Download and Install following extensions in Visual Studio Code
- Live Server [Ritwick Dey]
[Local Server]
- Cloud Server
[Azure, AWS, Firebase, GITHubPages etc..]
What is a Web Server?
Web Server resembles both hardware and software.
It satisfies the client request by sending and receving data.
Popular Web Server Software tools
- IIS [Internet Information Services Manager]
- Tomcat etc..
Summary
=======
1. Installed Package Manager - NPM
2. Installed Editor - Visual Studio Code
3. Installed Extension - Live Server
Create a new Project
================
[Web Application]
- What is a Web Server?
FAQ: What is a Web Site?
Ans : Web site is a virtual directory on web server.
http://localhost (or) http://127.0.0.1
http://localhost/amazonprime : Virtual Path
C:\amazonprime
Create a New Website: