Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2874e12

Browse files
committed
Update readme & connection for 3.6
1 parent 5b073e3 commit 2874e12

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

‎README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,23 @@
22

33
This repository will walk you through the process of quickly getting started using Node.js and MongoDB together.
44

5-
[Lauren Schaefer](https://github.com/ljhaywar) is actively working to add files to this repo and drafting a blog series that will walk you through the code. She will be updating this readme as she publishes blog posts.
5+
This branch uses MongoDB 4.4, MongoDB Node.js Driver 3.6.4, and Node.js 14.15.4. To see an earlier version that uses MongoDB 4.0, MongoDB Node.js Driver 3.3.2, and Node.js 10.16.3, visit the [3.3.2 branch](https://github.com/mongodb-developer/nodejs-quickstart/tree/3.3.2).
66

77
## Topics
88

9-
* How to get connected to your database: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs-mongodb--how-to-get-connected-to-your-database) | [code example](connection.js)
10-
* Creating documents: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs--mongodb--how-to-create-documents) | [code example](create.js)
11-
* Reading documents: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs--mongodb--how-to-read-documents) | [code example](read.js)
12-
* Updating documents: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs--mongodb--how-to-update-documents) | [code example](update.js)
13-
* Deleting documents: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs--mongodb--how-to-delete-documents) | [code example](delete.js)
14-
* The aggregation framework: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs--mongodb--how-to-analyze-data-using-the-aggregation-framework) | [code example](aggregation.js)
15-
* Transactions: [blog post](https://www.mongodb.com/blog/post/quick-start-nodejs--mongodb--how-to-implement-transactions) | [code example](transaction.js)
16-
* Change streams: [blog post](https://www.mongodb.com/blog/post/node-js-change-streams-and-triggers) | [code example](changeStreams.js)
9+
* How to get connected to your database: [blog post](https://developer.mongodb.com/quickstart/node-connect-mongodb/) | [code example](connection.js)
10+
* Creating documents: [blog post](https://developer.mongodb.com/quickstart/node-crud-tutorial/) | [code example](create.js)
11+
* Reading documents: [blog post](https://developer.mongodb.com/quickstart/node-crud-tutorial/) | [code example](read.js)
12+
* Updating documents: [blog post](https://developer.mongodb.com/quickstart/node-crud-tutorial/) | [code example](update.js)
13+
* Deleting documents: [blog post](https://developer.mongodb.com/quickstart/node-crud-tutorial/) | [code example](delete.js)
14+
* The aggregation framework: [blog post](https://developer.mongodb.com/quickstart/node-aggregation-framework/) | [code example](aggregation.js)
15+
* Transactions: [blog post](https://developer.mongodb.com/quickstart/node-transactions/) | [code example](transaction.js)
16+
* Change streams: [blog post](https://developer.mongodb.com/quickstart/nodejs-change-streams-triggers/) | [code example](changeStreams.js)
1717

1818
## Related Videos
1919

2020
[How to Perform the CRUD Operations Using MongoDB & Node.js](https://youtu.be/ayNI9Q84v8g)
21+
22+
## Questions?
23+
24+
Questions about this repo or how to use MongoDB and Node.js together? Ask them in the [MongoDB Community](https://community.mongodb.com).

‎connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async function main() {
99

1010
/**
1111
* The Mongo Client you will use to interact with your database
12-
* See https://mongodb.github.io/node-mongodb-native/3.3/api/MongoClient.html for more details
12+
* See https://mongodb.github.io/node-mongodb-native/3.6/api/MongoClient.html for more details
1313
*/
1414
const client = new MongoClient(uri);
1515

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /