Skip to content

Commit 54cb82b

Browse files
author
Chris Cho
authored
DOCSP-15299: add a link to Atlas Sample Data guide (#159)
* DOCSP-15299: add a link to Atlas Sample Data guide
1 parent 37fd569 commit 54cb82b

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

source/quick-start.txt

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,20 @@ project's files:
5454

5555
.. code-block:: none
5656

57-
cd node_quickstart
57+
cd node_quickstart
5858

5959
Next, set up NPM for your project by running the following command.
6060
This command creates a file called ``package.json``:
6161

6262
.. code-block:: none
6363

64-
npm init -y
64+
npm init -y
6565

6666
.. note:: Why the -y?
6767

68-
If you specify the ``-y`` option in the command, NPM automatically
69-
accepts the default values for the command. Omit the ``-y`` flag to
70-
interactively select your project settings.
68+
If you specify the ``-y`` option in the command, NPM automatically
69+
accepts the default values for the command. Omit the ``-y`` flag to
70+
interactively select your project settings.
7171

7272
Add MongoDB as a Dependency
7373
~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -78,7 +78,7 @@ Use the following command to instruct NPM to download and install the
7878

7979
.. code-block:: none
8080

81-
npm install mongodb
81+
npm install mongodb
8282

8383
This command downloads ``mongodb`` package and dependencies required for its
8484
installation and saves them into a directory called ``node_modules`` in
@@ -98,10 +98,11 @@ Set up a Free Tier Cluster in Atlas
9898
After installing the Node MongoDB driver, create a MongoDB instance to store
9999
and manage your data. Complete the
100100
:atlas:`Get Started with Atlas </getting-started?tck=docs_driver_nodejs>` guide
101-
to set up a new Atlas account, free tier cluster (MongoDB instance), load
102-
datasets, and interact with the data.
101+
to set up a new Atlas account and a free tier cluster (MongoDB instance).
102+
Then, complete the :atlas:`Load Sample Data into Your Atlas Cluster </sample-data/?tck=docs_driver_nodejs>`
103+
guide to insert sample data into your cluster.
103104

104-
After completing the steps in the Atlas guide, you should have a new MongoDB
105+
After completing the steps in these Atlas guides, you should have a new MongoDB
105106
cluster deployed in Atlas, a new database user, and sample datasets loaded
106107
into your cluster.
107108

@@ -176,7 +177,7 @@ Run the sample code with the following command from your command line:
176177

177178
.. code-block:: none
178179

179-
node index.js
180+
node index.js
180181

181182
When you run the command, the sample code should output the details of the
182183
movie which resembles the following:

0 commit comments

Comments
 (0)