Pergunta

I know there are tons of NOSQL databases that chose JSON as the native format in which the data is stored. I wonder if there is a relational database (operates on plain tuples rather than hierarchical documents) that serves records as JSON objects and as convenient to use from under NodeJS as, say MongoDB is.

Nenhuma solução correta

Outras dicas

As a relational database, Postgres has the capability to store JSON columns, see here for example. It's performance is also rather sleek.

There are a number of ORMs which support mapping relational databases to JSON objects which can be manipulated in Node:

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top