Skip to content

Commit 0a83d77

Browse files
committed
Update nodedb.md
1 parent fde4ba4 commit 0a83d77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

nodedb.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Using databases with Node.js
22

3-
There are a lot of databases to choose from and there are a lot of choices about how to connect to them. Whichever database you use, you will need some sort of library to get data to and from your data store.
3+
There are a lot of databases to choose from and there are a lot of choices about how to connect to them. Whichever database you use, you will need some sort of library to get data to and from your data store. If you are getting to know a database for the first time, then just using a simple client librray makes sense. However, if you want to use a library that maps to the data structures in your code, then you might want to look at using an object-relational mapper. The other alternative is to just use
4+
a database with data structures that closely match the data structures in your code (like Redis).
45

56
### A client library
67

0 commit comments

Comments
 (0)