-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwowPoints.txt
More file actions
60 lines (38 loc) · 769 Bytes
/
Copy pathwowPoints.txt
File metadata and controls
60 lines (38 loc) · 769 Bytes
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
In this practice Project we build basic CRUD Application using node js and its
Framework Express.
Task #1
What is node Js?
what is Express Js?
package.json?
package-lock.json?
Dependency?
Very First Step to create Node js project?
Task #2
Step By step To start Node js project
Folder Structure (MVC)
Run Your Server
dotenv file
DataBase Connectivity
Best Practice
Task #3
-> CRUD Operation
create
With DataBase Connectivity
Demand
Product Create,Update, Delete,get
//Product Field
productName,
productDescription,
Price,
inStock,
Date
Step1
Create Model
Task #4
-> GET API
-> req.Params
-> req.query
-> Get All Products
-> Get specific Product
Task #5
-> update and Delete API