-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathex1-mongodb.js
42 lines (35 loc) · 1.24 KB
/
ex1-mongodb.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
const MongoClient = require('mongodb').MongoClient;
const MUUID = require('../lib');
const assert = require('assert');
// Connection URL
const url = 'mongodb://localhost:27017';
const dbName = 'myproject';
const collectionName = 'mycollection';
// Use connect method to connect to the server
MongoClient.connect(url, { useNewUrlParser: true }, async (err, client) => {
try {
assert.equal(null, err);
const db = client.db(dbName);
const collection = await db.createCollection(collectionName);
// *****
// 1. insert a record with a v1 uuid
const insertResult = await collection.insertOne({
_id: MUUID.v1(),
name: 'carmine',
});
// retrieve the newly inserted document's UUID
// and print it as a human readable string
const insertedId = MUUID.from(insertResult.insertedId).toString();
console.log(`insertOne with id ${insertedId} succeeded`);
// *****
// 2. fetch a document by UUID
const findResult = await collection.findOne({
_id: insertResult.insertedId,
});
// print the UUID of the document as a human readable string
const foundId = MUUID.from(findResult._id).toString();
console.log(`findOne with id ${foundId} succeeded`);
} finally {
client.close();
}
});