-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathex2-mongoose.js
44 lines (38 loc) · 1.07 KB
/
ex2-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
const mongoose = require('mongoose');
const MUUID = require('../lib');
// Setup and connect
mongoose.connect('mongodb://localhost/my_mongoose', {
useNewUrlParser: true,
useUnifiedTopology: true,
});
const db = mongoose.connection
.on('error', () => console.error('connection error:'))
.once('open', () => {});
// 1. Define a simple schema
const kittySchema = new mongoose.Schema({
_id: {
type: 'object',
value: { type: 'Buffer' },
default: () => MUUID.v1(),
},
title: String,
});
const Kitten = mongoose.model('Kitten', kittySchema);
// 2. Create new kitten with UUID _id
var silence = new Kitten({
// _id: MUUID.v1(),
title: 'Silence',
});
// 3. Save the new kitten to the database
silence
.save()
// 4. Fetch the new kitten from the database
.then(kitten => {
console.log('inserted kitten with id', MUUID.from(kitten._id).toString());
return Kitten.findOne({ _id: kitten._id });
})
.then(kitten =>
console.log('found kitten with id', MUUID.from(kitten._id).toString())
)
.catch(e => console.error(e))
.finally(() => db.close());