-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathex4-mongoose.js
52 lines (43 loc) · 1.12 KB
/
ex4-mongoose.js
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
const mongoose = require('mongoose');
const MUUID = require('../lib');
// Setup and connect
mongoose.connect('mongodb://localhost/my_mongoose', {
useNewUrlParser: true,
useUnifiedTopology: true,
});
// Monitor connection
const db = mongoose.connection
.on('error', () => console.error('connection error:'))
.once('open', () => {});
// Main program
async function main() {
// Create mongoose schema
const dataSchema = new mongoose.Schema({
uuid: {
type: 'object',
value: { type: 'Buffer' },
default: () => MUUID.v4(),
required: true,
unique: true,
index: true,
},
});
// Create the model
const Data = mongoose.model('Data', dataSchema);
// Create a record and fetch it by its uuid
try {
// create a v4 uuid (this simply wraps the fantastic uuid library)
const uuid = MUUID.v4();
// save record and wait for it to commit
await new Data({ uuid }).save();
// retrieve the record
const result = await Data.findOne({ uuid });
// output the result
console.log(result);
} catch (e) {
console.error(e);
} finally {
db.close();
}
}
main();