Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Embedded document database for Node.js [closed]

What is the best embedded NoSQL database for Node.js?

My node.js application is too tiny to use a big database like mongodb which need extra configurations.

I tried EJDB, but it need too much disk space (about 1.5MB for each record).

I also search the web, but google gave me so many choices, which made me so confused.

Here are some requirements:

  • fast and lightweight
  • no need too much config
  • be able to store large amount of data (about hundred thousand records, total size in 1GB)
  • better package for Node.js
like image 462
Synthetic Dream Avatar asked Nov 02 '13 14:11

Synthetic Dream


People also ask

Which database is best for Node js?

“Node. js can only be used with MongoDB (which is the most popular NoSQL database).”

Is node js SQL or NoSQL?

Node. js supports all types of databases, including relational and NoSQL databases. However, Node. js NoSQL databases are the best match for most applications and company-wide use-cases.

Is node js NoSQL database?

Node. js can be used in database applications. One of the most popular NoSQL database is MongoDB.

Is MongoDB a NoSQL?

NoSQL databases come in a variety of types including document databases, key-values databases, wide-column stores, and graph databases. MongoDB is the world's most popular NoSQL database.


1 Answers

The most popular embedded Node.js database on GitHub is NeDB

like image 118
Bulkan Avatar answered Nov 15 '22 21:11

Bulkan