npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

strapi-soft-delete-plugin

v0.1.1

Published

Soft delete plugin for Strapi v5 — never lose content again. Drop-in replacement for strapi-plugin-soft-delete with pagination, lifecycle hooks, TTL auto-purge, and full test coverage.

Readme

Strapi v5 — Soft Delete Plugin

npm version npm downloads CI License: MIT

Soft delete plugin for Strapi v5 — never lose content again. When you delete an entry, it's marked as deleted instead of being removed from the database. You can restore it or permanently delete it later.

Drop-in replacement for strapi-plugin-soft-delete with significant improvements.

Features

  • Soft delete — delete operations mark entries instead of removing them
  • Restore — bring back soft-deleted entries with all relations and components intact
  • Permanent delete — remove entries from the database with proper component cleanup
  • Soft Delete Explorer — admin panel page to view, restore, and permanently delete entries
  • Entry preview — click any entry to see its full content before restoring
  • Pagination & filters — date range filtering, paginated results
  • RBAC — granular permissions per content type (read, restore, delete permanently)
  • Settings — configurable restoration behavior for single types and Draft & Publish
  • Auto-purge — automatically delete entries older than N days via cron
  • Custom lifecycle hooksbeforeSoftDelete, afterSoftDelete, beforeRestore, afterRestore, beforeDeletePermanently, afterDeletePermanently
  • Draft & Publish aware — respects publish state during restore
  • Relation safe — soft-deleted entries excluded from populated relations
  • Lifecycle safe — soft-delete/restore do NOT trigger beforeUpdate/afterUpdate hooks
  • v4 migration — same database columns, automatic settings migration

Compatibility

| Strapi Version | Plugin Version | | -------------- | ------------------------------------------------------------------------------------------- | | ^5.0.0 | 0.x | | ^4.x | Use strapi-plugin-soft-delete |

Installation

npm install strapi-soft-delete-plugin
# or
yarn add strapi-soft-delete-plugin

Add to your plugin configuration:

// config/plugins.ts
export default () => ({
  'soft-delete': {
    enabled: true,
  },
});

Rebuild and start:

npm run build
npm run develop

Configuration

Auto-Purge (optional)

Automatically permanently delete soft-deleted entries older than a specified number of days:

// config/plugins.ts
export default () => ({
  'soft-delete': {
    enabled: true,
    config: {
      autoPurge: {
        enabled: true,
        ttlDays: 30, // permanently delete after 30 days
        cron: '0 2 * * *', // run daily at 2 AM
      },
    },
  },
});

RBAC Permissions

Configure per-role in Settings → Roles → [Role Name]:

| Section | Permission | Description | | ------------------------- | -------------------- | ---------------------------------------------- | | Collection & Single Types | Soft Delete | Soft delete entries (replaces "Delete") | | Collection & Single Types | Deleted Read | View soft-deleted entries in the explorer | | Collection & Single Types | Deleted Restore | Restore soft-deleted entries | | Collection & Single Types | Delete Permanently | Permanently remove soft-deleted entries | | Plugins → Soft Delete | Read | Access the Soft Delete explorer in the sidebar | | Plugins → Soft Delete | Settings | Manage plugin settings |

Settings

Restoration Behavior

Configure in Settings → Soft Delete → Restoration Behavior:

Single Type Restoration — when restoring a single type entry that already has an active entry:

  • Soft Delete — soft-delete the existing active entry (default)
  • Delete Permanently — permanently delete the existing active entry

Draft & Publish Restoration — when restoring an entry from a D&P content type:

  • Unchanged — preserve the original publish state (default)
  • Draft — always restore as draft

Custom Lifecycle Hooks (optional)

The plugin works out of the box without any custom code. If you need to run custom logic during soft-delete operations (e.g., logging, notifications, validation), you can register lifecycle hooks in your application's bootstrap:

// src/index.ts
export default {
  async bootstrap({ strapi }) {
    const hooks = strapi.plugin('soft-delete').service('lifecycle-hooks');

    hooks.register('beforeSoftDelete', async ({ uid, documentId, entries, auth }) => {
      console.log(`About to soft-delete ${documentId} from ${uid}`);
      // Return { cancel: true } to prevent the operation
    });

    hooks.register('afterRestore', async ({ uid, documentId, entries, auth }) => {
      console.log(`Restored ${documentId} in ${uid}`);
    });
  },
};

Available hooks:

  • beforeSoftDelete / afterSoftDelete
  • beforeRestore / afterRestore
  • beforeDeletePermanently / afterDeletePermanently

All before* hooks can return { cancel: true } to abort the operation.

How It Works

  1. Schema injection — adds three hidden fields (_softDeletedAt, _softDeletedById, _softDeletedByType) to all api::* content types at boot time
  2. Delete interception — Document Service middleware converts delete operations into updates that set the soft-delete fields
  3. Query filtering — database lifecycle subscriber injects _softDeletedAt IS NULL into every query, hiding soft-deleted entries from normal API responses and populated relations
  4. Admin API — separate endpoints for listing, restoring, and permanently deleting soft-deleted entries
  5. Component cleanup — permanent delete properly removes associated components and dynamic zones

Migrating from v4

See MIGRATION.md for a step-by-step guide.

Development

# Install dependencies
npm install

# Build the plugin
npm run build

# Type check (server + admin + tests)
npm run type-check

# Lint
npm run lint

# Format
npm run format

# Unit tests
npm run test

# Unit tests with coverage
npm run test:coverage

# E2E tests (requires running Strapi instance)
npm run test:e2e

License

MIT