CouchDB in NestJS
I am getting started with NestJs and CouchDB. I am looking for a tutorial to get started but I can't find anything specific to CouchDB for NestJS. For nodejs I am finding quite a lot of stuff, but nothing about nestjs. I am new in both, NestJS and CouchDB, and to begin with, I can't find any library or package to use CouchDB in NestJS-
Does anyone know any tutorial on how to get started or just tell me here how to get started. How to connect CouchDB to NestJS and how to get the stuff from CouchDB to NestJS.
Thank you.
Your immediate best bet would be to create a Dynamic Module that's a simple wrapper around CouchDB. It doesn't have to be anything as fancy as the Nest packages for Mongo, Sequelize, or TypeORM. I have a decent example of a Postgres wrapper if you wannna take a look at that.
Otherwise, this is a great article on dynamic modules
CouchDB need not require a library since it has APIs for interaction. You can invoke APIs to perform CRUD operation on your CouchDB database with any programming language. The official link for CouchDB APIs is https://docs.couchdb.org/en/stable/api/index.html