Skip to content

Commit d761c92

Browse files
author
Chris Cho
authored
110823: taxonomy tagging (#821)
1 parent 76079d4 commit d761c92

File tree

4 files changed

+34
-15
lines changed

4 files changed

+34
-15
lines changed

source/fundamentals/connection/connect.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ Connection Guide
88
:name: genre
99
:values: reference
1010

11-
.. meta::
12-
:keywords: node.js
11+
.. meta::
12+
:keywords: node.js, code example, connection string, local connection, Stable API, Atlas
1313

1414
.. contents:: On this page
1515
:local:
1616
:backlinks: none
1717
:depth: 2
1818
:class: singlecol
1919

20-
This guide shows you how to connect to a
21-
`MongoDB Atlas deployment <https://www.mongodb.com/docs/atlas>`__,
20+
This guide shows you how to connect to a
21+
`MongoDB Atlas deployment <https://www.mongodb.com/docs/atlas>`__,
2222
a MongoDB instance, or a replica set using the Node.js driver.
2323

2424
.. _node-connection-uri:
@@ -34,21 +34,21 @@ example shows each part of the connection URI:
3434
.. figure:: /includes/figures/dns_seedlist_connection_string_parts.png
3535
:alt: Each part of the connection string
3636

37-
In this example, we connect to an Atlas MongoDB deployment that has a
38-
DNS SRV record. For more details, see the
37+
In this example, we connect to an Atlas MongoDB deployment that has a
38+
DNS SRV record. For more details, see the
3939
:manual:`DNS Seed List Connection Format
40-
</reference/connection-string/#dns-seed-list-connection-format>`
41-
documentation. This format offers flexibility in deployment and the
40+
</reference/connection-string/#dns-seed-list-connection-format>`
41+
documentation. This format offers flexibility in deployment and the
4242
ability to change the servers in rotation without reconfiguring clients.
4343

4444
.. note::
4545

4646
To learn how to retrieve your connection string in Atlas, see the
4747
:atlas:`Atlas driver connection guide </driver-connection>`.
4848

49-
If you are connecting to an instance or replica set that does not have a
50-
DNS SRV address, you must use ``mongodb`` for the protocol, which specifies
51-
the :manual:`Standard Connection String Format
49+
If you are connecting to an instance or replica set that does not have a
50+
DNS SRV address, you must use ``mongodb`` for the protocol, which specifies
51+
the :manual:`Standard Connection String Format
5252
</reference/connection-string/#std-label-connections-standard-connection-string-format>`.
5353

5454
After the protocol, the next part of the connection string contains credentials
@@ -73,7 +73,7 @@ Atlas Connection Example
7373
------------------------
7474

7575
You must create a client to connect to a MongoDB deployment on Atlas. To create
76-
a client, construct an instance of ``MongoClient``, passing in your
76+
a client, construct an instance of ``MongoClient``, passing in your
7777
URI and a ``MongoClientOptions`` object.
7878

7979
.. tip:: Reuse Your Client
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
.. _node-fle:
22

3+
.. facet::
4+
:name: genre
5+
:values: reference
6+
7+
.. meta::
8+
:keywords: node.js
9+
310
.. sharedinclude:: dbx/encrypt-fields.rst

source/fundamentals/gridfs.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
.. _node-gridfs:
2+
13
======
24
GridFS
35
======
46

5-
.. default-domain:: mongodb
7+
.. facet::
8+
:name: genre
9+
:values: reference
10+
11+
.. meta::
12+
:keywords: node.js, code example, file storage
613

714
.. contents:: On this page
815
:local:

source/fundamentals/indexes.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
Indexes
55
=======
66

7-
.. default-domain:: mongodb
7+
.. facet::
8+
:name: genre
9+
:values: reference
10+
11+
.. meta::
12+
:keywords: node.js, code example, Atlas search
813

914
.. contents:: On this page
1015
:local:
@@ -425,4 +430,4 @@ use the ``dropSearchIndex()`` method to remove an index called
425430
:language: javascript
426431
:dedent:
427432
:start-after: start dropSearchIndex example
428-
:end-before: end dropSearchIndex example
433+
:end-before: end dropSearchIndex example

0 commit comments

Comments
 (0)