Implementing Soft Delete in MongoDB with mongoose

nour karoui
May 8, 2021

--

soft-delete-plugin-mongoose is a mongoose plugin that allows you to soft delete documents and restore them in MongoDB (for JS & TS)

1- how to install

npm i soft-delete-plugin-mongoose

2- how it works

here’s a javascript and typescript demos on how to use this plugin

JS version

schema file

service file

TS version

schema file

service file

--

--