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 🙏

© 2025 – Pkg Stats / Ryan Hefner

strapi-import-export-v3

v0.1.2

Published

Import export for strapi 5 (V3 fork)

Downloads

134

Readme

Import Export for Strapi 5

Import/Export data from and to your database for Strapi 5 - a fork of strapi-import-export, built from scratch using the @strapi/sdk-plugin.

Original by Graeme Fulton

V3 fork by Dalen Catt

NPM Install:

npm i strapi-import-export

Guide

~~Refer to the original docs from the previous version for how this plugin works, it's exactly the same.~~

Plugin Configuration

The plugin can be configured in your config/plugins.js:

module.exports = {
  'strapi-import-export': {
    enabled: true,
    config: {
      // Server's public URL - used for media file URLs
      serverPublicHostname: 'https://your-server.com',
      // Maximum number of concurrent media downloads
      maxConcurrentDownloads: 5,
      // Other options...
    }
  }
}

Changelog

  • 0.1.2 - Fixed relations not being processed correctly in export
  • 0.1.1 - Added JSON v3 format

JSON v3 Format

The v3 format is a complete rewrite that focuses on properly handling draft/published content in Strapi 5:

Key Features

  • Draft/Published Support: Properly handles both draft and published versions of content
  • Locale Support (Experimental): Basic support for localized content - use with caution as this feature is still experimental
  • Smarter Relations: More efficient relation handling with configurable max depth
  • Document ID Tracking: Uses Strapi's document ID system for more reliable content tracking
  • Improved Media Handling: Better handling of media files with absolute URLs
  • Bulk Export: Export button appears in Strapi's bulk actions menu when entries are selected

Export Options

  • Export Relations: Include related content in the export
    • When enabled, shows additional options:
      • Deep Populate Relations: Include relations of related content
      • Deep Populate Component Relations: Include relations within components
      • Max Depth: Control how deep to traverse relations (1-20 levels)
  • Export All Locales (Experimental): Include all localized versions of content - not recommended for production use
  • Apply Filters and Sort: Use current view's filters and sorting in export

Import Options

  • Existing Entry Action: Choose how to handle existing entries
    • Warn: Show warning if the entry exists
    • Update: Update existing entries
    • Skip: Skip existing entries
  • Allow New Locales on Skip (Experimental): When skipping existing entries, still allow creation of new locales
  • Ignore Missing Relations: Continue import even if related entries are not found
  • Prevent Relation Changes: When skipping existing entries, prevent changes to their relations

ID Field Configuration

The v3 format uses a unique identifier field to track and match entries during import/export. This field must be both required and unique in your schema.

Setting Custom ID Field

You can configure which field to use as the identifier in your schema's plugin options:

// In your schema configuration:
{
  pluginOptions: {
    'strapi-import-export': {
      idField: 'customField'  // The field to use as identifier
    }
  },
  attributes: {
    customField: {
      type: 'string',
      required: true,
      unique: true
    }
    // ... other attributes
  }
}

Automatic ID Field Selection

If no idField is configured, the plugin will automatically look for fields in this order:

  1. uid - Typically a UUID from a custom field like Advanced-UUID
  2. name - If the content type is a single entry type, this is a good default
  3. title - Another common identifier field
  4. id - Falls back to Strapi's internal ID as last resort, but will not be exported with the data

Note: The selected field must be configured as both required: true and unique: true in your schema. The plugin will validate this and throw an error if the field is not properly configured.

How It Works

Bulk Actions

The plugin adds an "Export" button to Strapi's bulk actions menu. This appears when you select one or more entries in the content manager:

  • Select entries using the checkboxes in the list view
  • Click the "Export" button in the bulk actions menu
  • Choose your export options in the modal
  • Only the selected entries will be exported

Export Process

  1. Initial Export

    • Fetches all draft entries for the selected content type
    • For each draft, finds its corresponding published version
    • Groups content by locale (if localization is enabled)
    • Processes all relations, media, and components
  2. Relation Processing

    • When Export Relations is enabled:
      • Tracks all relations encountered during export
      • After initial export, processes each related content type
      • Continues until max depth is reached or no new relations found
    • Relations are stored using their identifier field value
  3. Media Handling

    • Media URLs are converted to absolute URLs using your server's public hostname (if the option is set in your plugin options).
    • Only the URL and metadata (name, alt text, caption, etc.) is exported, not the actual file

Import Process

  1. Validation

    • Checks that all content types exist
    • Validates identifier fields are properly configured
    • Ensures required fields are present
  2. Entry Processing

    • First processes published versions, then drafts
    • For each entry:
      1. Looks for existing entry using identifier field
      2. Handles according to Existing Entry Action setting
      3. Processes all relations, media, and components
  3. Media Import

    • For each media field:
      1. Existing Media Check:
        • Looks for existing media with the same hash or filename
        • If found, reuses the existing media entry
      2. New Media Import:
        • If no match found, downloads the file from the URL
        • Creates a new media entry with the downloaded file
        • Preserves metadata like alt text and captions
      3. Fallback Behavior:
        • If download fails, logs a warning but continues import
        • The field will be set to null if media cannot be resolved

Note: The import process is transactional per entry - if an entry fails to import, other entries will still be processed.

Troubleshooting

Common Issues

  • Media Import Fails: Check that your serverPublicHostname is configured correctly
  • Relations Not Found: Ensure related content is included in the export or already exists in target system
  • ID Field Errors: Verify your schema has properly configured unique identifier fields
  • Locale Issues: Make sure both source and target systems have the same locales configured

Import Validation Errors

The plugin performs several validations before import:

  • Schema existence and compatibility
  • Required fields presence
  • ID field configuration
  • Media file accessibility

Best Practices

  • Always test imports on a staging environment first
  • Use meaningful identifier fields (avoid relying on internal IDs)
  • Keep relation depth reasonable (3-5 levels max) to avoid performance issues
  • Back up your database before large imports
  • For large datasets, consider splitting the export into smaller chunks
  • Monitor the logs during import for any warnings or errors

Strapi 5 Upgrades (v2)

There was a lot of work to migrate this plugin to Strapi 5 because of the size of it. The deprecated APIs were replaced, and all the deprecated components updated to the new Strapi design system.

  • Import - seems to work okay (there is a known issue from the original plugin where the deepness dropdown doesn't work when the number of levels is high)
  • Export - seems working, need testing
  • Admin dashboard components (converted a lot of deprecated imports)
    • replaced select dropdowns
    • updated checkboxes to use radix api
    • loads of other similar stuff
  • Server – converted to ESM so it can be used in Strapi 5
  • Removed most typescript because it was causing issues, some types became out of date or could not be found.
  • Replaced strapi.entityService - this is deprecated, replaced with strapi.documents

See video (this was when I first started): Watch on YouTube 📹

Upgrade Guides:

These docs were most useful when migrating: