-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
141 lines (128 loc) · 3.29 KB
/
Copy pathserver.js
File metadata and controls
141 lines (128 loc) · 3.29 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
var mongoose = require("mongoose");
var Schema = mongoose.Schema;
mongoose.connect("mongodb+srv://dbUser:dbPassword@senecaweb.njfs1.mongodb.net/web322_week8?retryWrites=true&w=majority");
// define the company schema
var companySchema = new Schema({
"companyName": {
type: String,
unique: true
},
"address": String,
"phone": String,
"employeeCount": {
"type": Number,
"default": 0
},
"country": String
});
var Company = mongoose.model("web322_companies", companySchema);
// create a new company
var kwikEMart = new Company({
companyName: "The Kwik-E-Mart",
address: "Springfield",
phone: "212-842-4923",
employeeCount: 3,
country: "U.S.A"
});
var walmart = new Company({
companyName: "Walmart",
address: "Phoenix",
phone: "382-832-1482",
employeeCount: 70,
country: "U.S.A"
});
var google = new Company({
companyName: "Google",
address: "San Antonio",
phone: "353-942-4902",
employeeCount: 137,
country: "U.S.A"
});
Company.deleteMany({companyName: "The Kwik-E-Mart"})
.exec()
.then(() => {
console.log("removed company");
})
.catch((err) => {
console.log(err);
});
Company.deleteMany({companyName: "Walmart"})
.exec()
.then(() => {
console.log("removed company");
})
.catch((err) => {
console.log(err);
});
Company.deleteMany({companyName: "Google"})
.exec()
.then(() => {
console.log("removed company");
})
.catch((err) => {
console.log(err);
});
// save the company
kwikEMart.save((err) => {
if(err) {
console.log(`There was an error saving the Kwik-E-Mart company: ${err}`);
} else {
console.log("The Kwik-E-Mart company was saved to the web322_companies collection");
}
Company.find({ companyName: "The Kwik-E-Mart" })
.exec()
.then((company) => {
if(!company) {
console.log("No company could be found");
} else {
console.log(company);
}
// exit the program after saving
process.exit();
})
.catch((err) => {
console.log(`There was an error: ${err}`);
});
});
walmart.save((err) => {
if(err) {
console.log(`There was an error saving Walmart company: ${err}`);
} else {
console.log("Walmart company was saved to the web322_companies collection");
}
Company.find({ companyName: "Walmart" })
.exec()
.then((company) => {
if(!company) {
console.log("No company could be found");
} else {
console.log(company);
}
// exit the program after saving
process.exit();
})
.catch((err) => {
console.log(`There was an error: ${err}`);
});
});
google.save((err) => {
if(err) {
console.log(`There was an error saving Google company: ${err}`);
} else {
console.log("Google company was saved to the web322_companies collection");
}
Company.find({ companyName: "Google" })
.exec()
.then((company) => {
if(!company) {
console.log("No company could be found");
} else {
console.log(company);
}
// exit the program after saving
process.exit();
})
.catch((err) => {
console.log(`There was an error: ${err}`);
});
});